From 81d26ccadbad49e7fe1a2f872f585571c0bdf936 Mon Sep 17 00:00:00 2001 From: Vlad-Shcherbina Date: Sun, 1 Sep 2019 12:41:51 +0300 Subject: [PATCH] Fix typo in docs --- src/statement.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/statement.rs b/src/statement.rs index 7032316..8ba1cfa 100644 --- a/src/statement.rs +++ b/src/statement.rs @@ -45,7 +45,7 @@ impl Statement<'_> { /// /// Will return `Err` if binding parameters fails, the executed statement /// returns rows (in which case `query` should be used instead), or the - /// underling SQLite call fails. + /// underlying SQLite call fails. pub fn execute

(&mut self, params: P) -> Result where P: IntoIterator, @@ -89,7 +89,7 @@ impl Statement<'_> { /// /// Will return `Err` if binding parameters fails, the executed statement /// returns rows (in which case `query` should be used instead), or the - /// underling SQLite call fails. + /// underlying SQLite call fails. pub fn execute_named(&mut self, params: &[(&str, &dyn ToSql)]) -> Result { self.bind_parameters_named(params)?; self.execute_with_bound_parameters()