docs: fix typo

This commit is contained in:
Jake Hamilton
2023-08-17 00:34:38 -07:00
parent 838d233474
commit 2261cb3d2c

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