Merge pull request #5050 from jk4e/jk4e-patch-3

[nix/de-de] Fix typo
This commit is contained in:
Marcel Ribeiro-Dantas 2024-08-25 19:00:51 -03:00 committed by GitHub
commit a86b911e25
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -222,7 +222,7 @@ with builtins; [
({ a = 1; b = 2; } // { a = 3; c = 4; })
#=> { a = 3; b = 2; c = 4; }
# Das Schlüsselwort rec bezeichenet ein "rekursives Set", in dem sich Attribute
# Das Schlüsselwort rec bezeichnet ein "rekursives Set", in dem sich Attribute
# aufeinander beziehen können.
(let a = 1; in { a = 2; b = a; }.b)
#=> 1