summary refs log tree commit diff
path: root/lib/cli.nix
diff options
context:
space:
mode:
Diffstat (limited to 'lib/cli.nix')
-rw-r--r--lib/cli.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/cli.nix b/lib/cli.nix
index d794778b21a..23fab8ec970 100644
--- a/lib/cli.nix
+++ b/lib/cli.nix
@@ -6,10 +6,10 @@
      boilerplate related to command-line construction for simple use cases.
 
      Example:
-       renderOptions { foo = "A"; bar = 1; baz = null; qux = true; v = true; }
+       encodeGNUCommandLine { foo = "A"; bar = 1; baz = null; qux = true; v = true; }
        => " --bar '1' --foo 'A' --qux -v"
   */
-  renderOptions =
+  encodeGNUCommandLine =
     options:
       let
         render = key: value: