aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/libutil/config.hh4
-rw-r--r--src/libutil/experimental-features.cc5
2 files changed, 5 insertions, 4 deletions
diff --git a/src/libutil/config.hh b/src/libutil/config.hh
index 6baba0167..162626791 100644
--- a/src/libutil/config.hh
+++ b/src/libutil/config.hh
@@ -382,11 +382,11 @@ struct ExperimentalFeatureSettings : Config {
experimental-features = nix-command flakes
```
- Experimental features available:
+ The following experimental features are available:
{{#include experimental-features-shortlist.md}}
- Experimental features are [further documented](@docroot@/contributing/experimental-features.md) in the contribution guide.
+ Experimental features are [further documented in the manual](@docroot@/contributing/experimental-features.md).
)"};
/**
diff --git a/src/libutil/experimental-features.cc b/src/libutil/experimental-features.cc
index 1cd0dbb79..5b4418714 100644
--- a/src/libutil/experimental-features.cc
+++ b/src/libutil/experimental-features.cc
@@ -204,7 +204,7 @@ const std::optional<ExperimentalFeature> parseExperimentalFeature(const std::str
{
using ReverseXpMap = std::map<std::string_view, ExperimentalFeature>;
- static std::unique_ptr<ReverseXpMap> reverseXpMap = [](){
+ static std::unique_ptr<ReverseXpMap> reverseXpMap = []() {
auto reverseXpMap = std::make_unique<ReverseXpMap>();
for (auto & xpFeature : xpFeatureDetails)
(*reverseXpMap)[xpFeature.name] = xpFeature.tag;
@@ -223,7 +223,8 @@ std::string_view showExperimentalFeature(const ExperimentalFeature tag)
return xpFeatureDetails[(size_t)tag].name;
}
-nlohmann::json documentExperimentalFeatures() {
+nlohmann::json documentExperimentalFeatures()
+{
StringMap res;
for (auto & xpFeature : xpFeatureDetails)
res[std::string { xpFeature.name }] =