Fix clippy warnings.

This commit is contained in:
John Gallagher 2016-05-26 00:30:01 -04:00
parent f3693a993e
commit bafa85a1a0

View File

@ -1,7 +1,7 @@
use super::{Null, Value, ValueRef};
use ::Result;
/// ToSqlOutput represents the possible output types for implementors of the ToSql trait.
/// `ToSqlOutput` represents the possible output types for implementors of the `ToSql` trait.
pub enum ToSqlOutput<'a> {
/// A borrowed SQLite-representable value.
Borrowed(ValueRef<'a>),