From 8be28b9272a4015d2e89df1b850076dabc28a2e1 Mon Sep 17 00:00:00 2001 From: Ivan Ukhov Date: Sun, 20 Dec 2015 07:00:31 +0100 Subject: [PATCH] Adjust the example --- README.md | 3 +-- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2bffd33..a840b9f 100644 --- a/README.md +++ b/README.md @@ -46,8 +46,7 @@ while let State::Row = statement.next().unwrap() { } ``` -The same query example using a cursor, which is a wrapper around a prepared -statement: +The same query using a cursor, which is a wrapper around a prepared statement: ```rust use sqlite::Value; diff --git a/src/lib.rs b/src/lib.rs index 1c10fd9..d22a01c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -54,7 +54,7 @@ //! } //! ``` //! -//! The same query example using a cursor, which is a wrapper around a prepared +//! The same query using a cursor, which is a wrapper around a prepared //! statement: //! //! ```