Adjust the documentation

This commit is contained in:
Ivan Ukhov 2015-11-22 08:19:21 +01:00
parent 51545f4c2b
commit 96554c391d
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ while let State::Row = statement.next().unwrap() {
}
```
The same query example using a cursor, which is a wrapper over a prepared
The same query example using a cursor, which is a wrapper around a prepared
statement:
```rust

View File

@ -54,7 +54,7 @@
//! }
//! ```
//!
//! The same query example using a cursor, which is a wrapper over a prepared
//! The same query example using a cursor, which is a wrapper around a prepared
//! statement:
//!
//! ```