Adjust the description of Type once more

This commit is contained in:
Ivan Ukhov 2015-08-01 17:50:06 -04:00
parent 25cce673bb
commit d6a8437c51

View File

@ -115,15 +115,15 @@ pub type Result<T> = std::result::Result<T, Error>;
/// A data type. /// A data type.
#[derive(Clone, Copy, Debug, Eq, PartialEq)] #[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum Type { pub enum Type {
/// Binary data. /// The binary type.
Blob, Blob,
/// A 64-bit floating-point number. /// The floating-point type (64-bit).
Float, Float,
/// A 64-bit signed integer. /// The integer type (64-bit, signed).
Integer, Integer,
/// An absence of a value. /// The null type.
Null, Null,
/// A string. /// The string type.
String, String,
} }