Skip to content

Commit

Permalink
fix attribute documentation missing closing square bracket
Browse files Browse the repository at this point in the history
  • Loading branch information
nrxus committed Dec 3, 2024
1 parent a8a327d commit 97cfd99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scylla/src/macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ pub use scylla_cql::macros::SerializeRow;
/// If the value of the field received from DB is null, the field will be
/// initialized with `Default::default()`.
///
/// `#[scylla(rename = "field_name")`
/// `#[scylla(rename = "field_name")]`
///
/// By default, the generated implementation will try to match the Rust field
/// to a UDT field with the same name. This attribute instead allows to match
Expand Down Expand Up @@ -475,7 +475,7 @@ pub use scylla_macros::DeserializeValue;
/// The field will be completely ignored during deserialization and will
/// be initialized with `Default::default()`.
///
/// `#[scylla(rename = "field_name")`
/// `#[scylla(rename = "field_name")]`
///
/// By default, the generated implementation will try to match the Rust field
/// to a column with the same name. This attribute allows to match to a column
Expand Down

0 comments on commit 97cfd99

Please sign in to comment.