Skip to content

Commit

Permalink
Fix and improve rustdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
est31 committed May 9, 2024
1 parent a6f7cf8 commit fc14760
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/array.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@ use serde::{Deserialize, Deserializer, Serialize, Serializer};
///
/// [`BigArray`]: crate::BigArray
///
/// ```Rust
/// ```rust
/// # use serde_derive::{Serialize, Deserialize};
/// #[derive(Serialize, Deserialize)]
/// struct S {
/// arr: Box<Array<u8, 64>>,
/// arr_boxed: Box<Array<u8, 64>>,
/// arr_nested: Array<Array<u8, 234>, 65>,
/// }
/// ```
#[repr(transparent)]
Expand Down

0 comments on commit fc14760

Please sign in to comment.