Update source/tutorials/nix-language.md

This commit is contained in:
Valentin Gagarin 2022-11-08 20:40:39 +01:00 committed by GitHub
parent 3b775207a5
commit ecf756298f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1415,7 +1415,8 @@ Parentheses are required to separate function declaration from function applicat
(pkgs-lib)=
### `pkgs.lib`
The [`nixpkgs`][nixpkgs] repository contains an attribute set called [`lib`][nixpkgs-lib], which provides a large number of useful functions implemented in the Nix language.
The [`nixpkgs`][nixpkgs] repository contains an attribute set called [`lib`][nixpkgs-lib], which provides a large number of useful functions.
They are implemented in the Nix language, as opposed to [`builtins`](builtins), which are part of the language itself.
:::{note}
The Nixpkgs manual lists all [Nixpkgs library functions][nixpkgs-functions].