Fix typo in FromRow docs (#2040)

Fixes typo: manuel to manual.
This commit is contained in:
zach 2022-08-11 14:24:57 -07:00 committed by GitHub
parent ca74b0c141
commit 326254fb51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -126,7 +126,7 @@ use crate::row::Row;
/// ## Manual implementation /// ## Manual implementation
/// ///
/// You can also implement the [`FromRow`] trait by hand. This can be useful if you /// You can also implement the [`FromRow`] trait by hand. This can be useful if you
/// have a struct with a field that needs manuel decoding: /// have a struct with a field that needs manual decoding:
/// ///
/// ///
/// ```rust,ignore /// ```rust,ignore