Remove unnecessary uses in the examples

This commit is contained in:
Ivan Ukhov 2015-06-19 09:21:31 -04:00
parent 9da539a257
commit 56c36f7ddc
2 changed files with 0 additions and 4 deletions

View File

@ -7,8 +7,6 @@ The package provides an interface to [SQLite][1].
## Example ## Example
```rust ```rust
use std::path::Path;
let database = sqlite::open(":memory:").unwrap(); let database = sqlite::open(":memory:").unwrap();
database.execute(r#" database.execute(r#"

View File

@ -3,8 +3,6 @@
//! ## Example //! ## Example
//! //!
//! ``` //! ```
//! use std::path::Path;
//!
//! let database = sqlite::open(":memory:").unwrap(); //! let database = sqlite::open(":memory:").unwrap();
//! //!
//! database.execute(r#" //! database.execute(r#"