Merge pull request #9021 from fricklerhandwerk/settings-docstring

fix typo in docstring
This commit is contained in:
Robert Hensing 2023-09-21 13:20:13 +02:00 committed by GitHub
commit 89a604a6b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -36,8 +36,8 @@ namespace nix {
* *
* std::map<std::string, Config::SettingInfo> settings; * std::map<std::string, Config::SettingInfo> settings;
* config.getSettings(settings); * config.getSettings(settings);
* config["system"].description == "the current system" * settings["system"].description == "the current system"
* config["system"].value == "x86_64-linux" * settings["system"].value == "x86_64-linux"
* *
* *
* The above retrieves all currently known settings from the `Config` object * The above retrieves all currently known settings from the `Config` object