Fix clippy warnings

This commit is contained in:
Billy Chan 2024-08-02 13:11:11 +08:00
parent eafaeb4d4d
commit 651c419b1b
No known key found for this signature in database
GPG Key ID: 45461E52F22E0279
2 changed files with 3 additions and 2 deletions

View File

@ -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;

View File

@ -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
///