about summary refs log tree commit diff
path: root/lib/meta.nix
diff options
context:
space:
mode:
authorYoshiRulz <OSSYoshiRulz@gmail.com>2023-01-02 07:51:54 +1000
committerYoshiRulz <OSSYoshiRulz@gmail.com>2023-01-02 08:25:17 +1000
commit7fba83890ccf9f2e10a665bb5a7cc9438280742d (patch)
tree8b53d2e43d21ae132af6856805b4791dc5d91a84 /lib/meta.nix
parent942fe7ae60e92c2e00b313aad1dfdbaf4cb9f791 (diff)
lib: Fix mismatched quotes in `lib.*` doc comments
caused problems for automated rich text generation such as
https://teu5us.github.io/nix-lib.html#customisation-functions
Diffstat (limited to 'lib/meta.nix')
-rw-r--r--lib/meta.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/meta.nix b/lib/meta.nix
index 74b94211552b6..893c671b04fa8 100644
--- a/lib/meta.nix
+++ b/lib/meta.nix
@@ -27,7 +27,7 @@ rec {
   setName = name: drv: drv // {inherit name;};
 
 
-  /* Like `setName', but takes the previous name as an argument.
+  /* Like `setName`, but takes the previous name as an argument.
 
      Example:
        updateName (oldName: oldName + "-experimental") somePkg