diff --git a/src/lib.rs b/src/lib.rs index 42897e4..0c9e2ad 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -115,15 +115,15 @@ pub type Result = std::result::Result; /// A data type. #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub enum Type { - /// Binary data. + /// The binary type. Blob, - /// A 64-bit floating-point number. + /// The floating-point type (64-bit). Float, - /// A 64-bit signed integer. + /// The integer type (64-bit, signed). Integer, - /// An absence of a value. + /// The null type. Null, - /// A string. + /// The string type. String, }