aboutsummaryrefslogtreecommitdiff
path: root/src/libutil
diff options
context:
space:
mode:
Diffstat (limited to 'src/libutil')
-rw-r--r--src/libutil/config.hh2
-rw-r--r--src/libutil/experimental-features.cc2
-rw-r--r--src/libutil/logging.hh2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/libutil/config.hh b/src/libutil/config.hh
index fb433c607..8a4d24456 100644
--- a/src/libutil/config.hh
+++ b/src/libutil/config.hh
@@ -13,7 +13,7 @@
namespace nix {
/**
- * The Config class provides Nix runtime configurations.
+ * The Config class provides Lix runtime configurations.
*
* What is a Configuration?
* A collection of uniquely named Settings.
diff --git a/src/libutil/experimental-features.cc b/src/libutil/experimental-features.cc
index f1cbfdb16..3a834293a 100644
--- a/src/libutil/experimental-features.cc
+++ b/src/libutil/experimental-features.cc
@@ -293,7 +293,7 @@ std::set<ExperimentalFeature> parseFeatures(const std::set<std::string> & rawFea
}
MissingExperimentalFeature::MissingExperimentalFeature(ExperimentalFeature feature)
- : Error("experimental Nix feature '%1%' is disabled; use '--extra-experimental-features %1%' to override", showExperimentalFeature(feature))
+ : Error("experimental Lix feature '%1%' is disabled; use '--extra-experimental-features %1%' to override", showExperimentalFeature(feature))
, missingFeature(feature)
{}
diff --git a/src/libutil/logging.hh b/src/libutil/logging.hh
index 7b7f69833..64be8bc62 100644
--- a/src/libutil/logging.hh
+++ b/src/libutil/logging.hh
@@ -41,7 +41,7 @@ struct LoggerSettings : Config
Setting<bool> showTrace{
this, false, "show-trace",
R"(
- Whether Nix should print out a stack trace in case of Nix
+ Whether Lix should print out a stack trace in case of Nix
expression evaluation errors.
)"};
};