Fix a small typo (#1685)

This commit is contained in:
Alvaro Parker 2023-06-06 05:38:12 -04:00 committed by GitHub
parent d099669ad8
commit adc467f228
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,7 +37,7 @@ pub trait ModelTrait: Clone + Send + Debug {
l.find_linked().belongs_to_tbl_alias(self, tbl_alias) l.find_linked().belongs_to_tbl_alias(self, tbl_alias)
} }
/// Delete an model /// Delete a model
async fn delete<'a, A, C>(self, db: &'a C) -> Result<DeleteResult, DbErr> async fn delete<'a, A, C>(self, db: &'a C) -> Result<DeleteResult, DbErr>
where where
Self: IntoActiveModel<A>, Self: IntoActiveModel<A>,