From 8a88ba647c42b426dacc785ae60babf3492a9f4c Mon Sep 17 00:00:00 2001 From: Toby Murray Date: Wed, 22 Sep 2021 23:44:26 -0400 Subject: [PATCH] 'restricts' -> 'restrictions' --- src/statement.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/statement.rs b/src/statement.rs index 48b69f7..0d80dd1 100644 --- a/src/statement.rs +++ b/src/statement.rs @@ -135,8 +135,8 @@ impl Statement<'_> { /// Execute the prepared statement, returning a handle to the resulting /// rows. /// - /// Due to lifetime restricts, the rows handle returned by `query` does not - /// implement the `Iterator` trait. Consider using + /// Due to lifetime restrictions, the rows handle returned by `query` does + /// not implement the `Iterator` trait. Consider using /// [`query_map`](Statement::query_map) or /// [`query_and_then`](Statement::query_and_then) instead, which do. ///