From d6a8437c51e6f55e75d73f17cdc1737c190f6bb7 Mon Sep 17 00:00:00 2001 From: Ivan Ukhov Date: Sat, 1 Aug 2015 17:50:06 -0400 Subject: [PATCH] Adjust the description of Type once more --- src/lib.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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, }