summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/value.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/value.rs b/src/value.rs
index a2b037c..192632b 100644
--- a/src/value.rs
+++ b/src/value.rs
@@ -1,7 +1,10 @@
use std::convert::From;
use std::borrow::Cow;
-// Variant for a configuration Value
+/// A configuration value.
+///
+/// Has an underlying or native type that comes from the configuration source
+/// but will be coerced into the requested type.
#[derive(Clone)]
pub enum Value {
String(String),