summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuke Hsiao <luke@hsiao.dev>2022-03-14 06:52:28 -0700
committerGitHub <noreply@github.com>2022-03-14 06:52:28 -0700
commitb74333b34350a7b94ef7f6c92fded86dd0868861 (patch)
tree36109fe5bd135cdaae504197b623f488ff2c0d9a
parent2e9ccf751dddf1f52b4634dc1ef4ed954cf0123e (diff)
docs(builder): fix typo in doc comment
-rw-r--r--src/builder.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/builder.rs b/src/builder.rs
index 018713c..e29b731 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).