summary refs log tree commit diff
path: root/doc/functions
diff options
context:
space:
mode:
authorAndrew <Andrew@Kvalhe.im>2023-06-10 17:15:43 -0700
committerGitHub <noreply@github.com>2023-06-11 02:15:43 +0200
commit1b6f6406878da49a667a774d842f7e3aa6a84768 (patch)
treea9dc681d322fd5bcd2bdc46096de8c37b1d3dc4d /doc/functions
parent30a6ecff17bc023b5f894d3a11866495e6d8c17a (diff)
doc: correct typos and spelling (#237098)
Diffstat (limited to 'doc/functions')
-rw-r--r--doc/functions/generators.section.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/functions/generators.section.md b/doc/functions/generators.section.md
index d54e5027c799c..8b3ae6843a227 100644
--- a/doc/functions/generators.section.md
+++ b/doc/functions/generators.section.md
@@ -16,7 +16,7 @@ let
              if v == true then ''"yes"''
         else if v == false then ''"no"''
         else if isString v then ''"${v}"''
-        # and delegats all other values to the default generator
+        # and delegates all other values to the default generator
         else generators.mkValueStringDefault {} v;
     } ":";
   };