From fa17cd620e2cbe826c02b362b115db440b6cf6fc Mon Sep 17 00:00:00 2001 From: Ivan Ukhov Date: Wed, 22 May 2019 07:37:51 +0200 Subject: [PATCH] Adjust a description --- src/statement.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/statement.rs b/src/statement.rs index 64ae4f8..7b80f02 100644 --- a/src/statement.rs +++ b/src/statement.rs @@ -57,7 +57,7 @@ impl<'l> Statement<'l> { /// Return the type of a column. /// - /// The type is revealed after the first step has been taken. + /// The type becomes available after taking a step. pub fn kind(&self, i: usize) -> Type { debug_assert!(i < self.count(), "the index is out of range"); match unsafe { ffi::sqlite3_column_type(self.raw.0, i as c_int) } {