diff --git a/sqlx-core/src/from_row.rs b/sqlx-core/src/from_row.rs index 234dd94176..a6129b9611 100644 --- a/sqlx-core/src/from_row.rs +++ b/sqlx-core/src/from_row.rs @@ -91,7 +91,7 @@ use crate::{error::Error, row::Row}; /// will set the value of the field `location` to the default value of `Option`, /// which is `None`. /// -/// Moreover, if the struct has an implementation for [`Default`], you can use the `default`` +/// Moreover, if the struct has an implementation for [`Default`], you can use the `default` /// attribute at the struct level rather than for each single field. If a field does not appear in the result, /// its value is taken from the `Default` implementation for the struct. /// For example: