Remove stable #![allow(unstable)] tags from docs

This commit is contained in:
John Gallagher 2015-05-03 21:49:27 -04:00
parent 91987c9101
commit b393348ab0
2 changed files with 0 additions and 2 deletions

View File

@ -2,7 +2,6 @@
//! an interface similar to [rust-postgres](https://github.com/sfackler/rust-postgres).
//!
//! ```rust
//! #![allow(unstable)]
//! extern crate rusqlite;
//! extern crate time;
//!

View File

@ -140,7 +140,6 @@ impl<T: ToSql> ToSql for Option<T> {
/// ## Example
///
/// ```rust,no_run
/// #![allow(unstable)]
/// # extern crate libc;
/// # extern crate rusqlite;
/// # use rusqlite::{SqliteConnection, SqliteResult};