Docs fixes

This commit is contained in:
Steven Fackler 2015-01-24 10:46:01 -08:00
parent 4c90977cb0
commit e2f1a7cb11

View File

@ -1064,7 +1064,7 @@ impl Connection {
///
/// Prepared statements should be used for any SQL statement which contains
/// user-specified data, as it provides functionality to safely embed that
/// data in the statment. Do not form statements via string concatenation
/// data in the statement. Do not form statements via string concatenation
/// and feed them into this method.
///
/// ## Example
@ -1224,7 +1224,7 @@ impl<'conn> Transaction<'conn> {
})
}
#[deprecated = "call `lazy_query` on Statement instead"]
#[deprecated = "call `lazy_query` on `Statement` instead"]
#[allow(missing_docs)]
pub fn lazy_query<'trans, 'stmt>(&'trans self,
stmt: &'stmt Statement,