summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/value.rs10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/value.rs b/src/value.rs
index a8ae94a..5d7562c 100644
--- a/src/value.rs
+++ b/src/value.rs
@@ -119,19 +119,17 @@ pub struct Value {
/// A description of the original location of the value.
///
/// A Value originating from a File might contain:
- /// ```
+ ///
/// Settings.toml
- /// ```
///
/// A Value originating from the environment would contain:
- /// ```
+ ///
/// the envrionment
- /// ```
///
/// A Value originating from a remote source might contain:
- /// ```
+ ///
/// etcd+http://127.0.0.1:2379
- /// ```
+ ///
origin: Option<String>,
/// Underlying kind of the configuration value.