Adjust the example

This commit is contained in:
Ivan Ukhov 2015-12-20 07:00:31 +01:00
parent 12816e86f2
commit 8be28b9272
2 changed files with 2 additions and 3 deletions

View File

@ -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;

View File

@ -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:
//!
//! ```