summaryrefslogtreecommitdiffhomepage
path: root/nix.html.markdown
diff options
context:
space:
mode:
authorwalfie <walfington@gmail.com>2020-05-29 20:55:46 -0400
committerGitHub <noreply@github.com>2020-05-29 20:55:46 -0400
commit97aece4d68f286f8c3bda8cc3787f8cc90e537f8 (patch)
tree6bc3e0e1f67fb2833a24aeb4ff357d65b63e10cb /nix.html.markdown
parent54c34420f8606fe641a196aeed875814f55467a6 (diff)
Fix typo in nix documentation
Diffstat (limited to 'nix.html.markdown')
-rw-r--r--nix.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/nix.html.markdown b/nix.html.markdown
index 5941f0e6..dde5dbec 100644
--- a/nix.html.markdown
+++ b/nix.html.markdown
@@ -279,7 +279,7 @@ with builtins; [
#=> 7
# This first line of tutorial starts with "with builtins;"
- # because builtins is a set the contains all of the built-in
+ # because builtins is a set that contains all of the built-in
# functions (length, head, tail, filter, etc.). This saves
# us from having to write, for example, "builtins.length"
# instead of just "length".