docs: fix typo

This commit is contained in:
Jake Hamilton 2023-08-17 00:34:38 -07:00
parent 838d233474
commit 2261cb3d2c
No known key found for this signature in database
GPG key ID: 9762169A1B35EA68

View file

@ -49,7 +49,7 @@ in
## Apply an argument to a function.
## Example Usage:
## ```nix
## call (x: x + 1) 0
## apply 0 (x: x + 1)
## ```
## Result:
## ```nix