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