Adjust the description of Database

This commit is contained in:
Ivan Ukhov
2015-06-12 14:21:29 -04:00
parent 9bd6db2ab5
commit f776e1daf6
2 changed files with 3 additions and 3 deletions

View File

@ -73,7 +73,7 @@ pub use statement::{Statement, Binding, Value, State};
/// A result.
pub type Result<T> = ::std::result::Result<T, Error>;
/// Open a database.
/// Open a connection to a new or existing database.
#[inline]
pub fn open<'l>(path: &std::path::Path) -> Result<Database<'l>> {
Database::open(path)