From ed0aaeba8a859f3b46efd6178434febbd213a2cf Mon Sep 17 00:00:00 2001 From: Erik Date: Fri, 15 Oct 2021 22:17:51 +0200 Subject: [PATCH] fix typo Co-authored-by: Jonas Platte --- sqlx-core/src/from_row.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlx-core/src/from_row.rs b/sqlx-core/src/from_row.rs index 633c7d45fb..c157fc30cb 100644 --- a/sqlx-core/src/from_row.rs +++ b/sqlx-core/src/from_row.rs @@ -94,7 +94,7 @@ use crate::row::Row; /// /// ## 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: /// /// ```rust,ignore