summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbicarlsen <carlsen.bri@gmail.com>2022-03-31 00:42:25 +0200
committerGitHub <noreply@github.com>2022-03-31 00:42:25 +0200
commit3c77c2fddf6b3ef94432426377bf5e36a70aee68 (patch)
treee7b3b8219951f0b091648e26638f12a606d59e4a
parent8f1ccff320aa81eed85d4d4d686b56d2dd0e5643 (diff)
Fixed type in ConfigBuilder docs
Fixed a simple type in the `ConfigBuilder` docs, `alaways` -> `always`
-rw-r--r--src/builder.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/builder.rs b/src/builder.rs
index ee83bfe..6f928c6 100644
--- a/src/builder.rs
+++ b/src/builder.rs
@@ -11,7 +11,7 @@ use crate::{config::Config, path::Expression, source::Source, value::Value};
/// It registers ordered sources of configuration to later build consistent [`Config`] from them.
/// Configuration sources it defines are defaults, [`Source`]s and overrides.
///
-/// Defaults are alaways loaded first and can be overwritten by any of two other sources.
+/// Defaults are always loaded first and can be overwritten by any of two other sources.
/// Overrides are always loaded last, thus cannot be overridden.
/// Both can be only set explicitly key by key in code
/// using [`set_default`](Self::set_default) or [`set_override`](Self::set_override).