diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2023-06-27 09:35:51 -0400 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2023-06-27 09:37:31 -0400 |
commit | d40f0e534d657e619634ba204fb8970f4a01fbc5 (patch) | |
tree | f92b24b33a4dbae23d6437ae67e4ebaa6d2bc375 | |
parent | 4da7c866181c699b43d3cd2fff0afd2505774be7 (diff) |
Don't say this when we still pollute the global scope
Co-authored-by: Robert Hensing <roberth@users.noreply.github.com>
-rw-r--r-- | doc/manual/src/language/builtin-constants.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual/src/language/builtin-constants.md b/doc/manual/src/language/builtin-constants.md index eb8b53bf0..99520ad3f 100644 --- a/doc/manual/src/language/builtin-constants.md +++ b/doc/manual/src/language/builtin-constants.md @@ -4,7 +4,7 @@ These constants are built into the Nix language evaluator: - [`builtins`]{#builtins-builtins} (attribute set) - Contains all the [built-in functions](./builtins.md) and values, in order to avoid polluting the global scope. + Contains all the [built-in functions](./builtins.md) and values. Since built-in functions were added over time, [testing for attributes](./operators.md#has-attribute) in `builtins` can be used for graceful fallback on older Nix installations: |