Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/bounded_vec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -564,9 +564,9 @@
}
}

/// Option<BoundedVec<T, _, _>> to Vec<T>

Check warning on line 567 in src/bounded_vec.rs

View workflow job for this annotation

GitHub Actions / Intra-documentation links

unclosed HTML tag `T`
pub trait OptBoundedVecToVec<T> {
/// Option<BoundedVec<T, _, _>> to Vec<T>

Check warning on line 569 in src/bounded_vec.rs

View workflow job for this annotation

GitHub Actions / Intra-documentation links

unclosed HTML tag `T`
fn to_vec(self) -> Vec<T>;
}

Expand Down Expand Up @@ -664,7 +664,7 @@
"type": "array",
"items": T::json_schema(gen),
"minItems": L as u32,
"maxItems": L as u32
"maxItems": U as u32
})
}
}
Expand Down
Loading