fix: typos

Needed for the typos nix check in #1320.
This commit is contained in:
Jose Storopoli
2024-07-30 13:35:23 -03:00
parent 82141a8201
commit a8efeaa0fb
3 changed files with 3 additions and 3 deletions

View File

@@ -107,7 +107,7 @@ impl<T> Persisted<T> {
Ok(T::load(db, params)?.map(|inner| Self { inner }))
}
/// Contruct a persisted `T` from an async `Db`.
/// Construct a persisted `T` from an async `Db`.
pub async fn load_async<Db>(
db: &mut Db,
params: T::LoadParams,