diff --git a/sea-orm-macros/src/derives/util.rs b/sea-orm-macros/src/derives/util.rs index e59203f6f..a29345fbd 100644 --- a/sea-orm-macros/src/derives/util.rs +++ b/sea-orm-macros/src/derives/util.rs @@ -74,7 +74,8 @@ where /// - `"A B"` /// - `"A_B"` /// - `"A_ B"` -/// shares the same identifier of `"AB"`; +/// +/// All shares the same identifier of `"AB"`; /// /// This function does the PascelCase conversion with a few special escapes: /// - Non-Unicode Standard Annex #31 compliant characters will converted to their hex notation; diff --git a/src/entity/mod.rs b/src/entity/mod.rs index d58d4a4bb..6589db9cf 100644 --- a/src/entity/mod.rs +++ b/src/entity/mod.rs @@ -9,7 +9,7 @@ /// - The Column which is implemented by [ColumnTrait](crate::ColumnTrait) /// - A Relation which is implemented by [RelationTrait](crate::RelationTrait) /// - The Primary Key which is implemented by [PrimaryKeyTrait](crate::PrimaryKeyTrait) -/// and [PrimaryKeyToColumn](crate::PrimaryKeyToColumn) +/// and [PrimaryKeyToColumn](crate::PrimaryKeyToColumn) /// /// This trait also provides an API for CRUD actions ///