about summary refs log tree commit diff
path: root/nix
diff options
context:
space:
mode:
authorsterni <sternenseemann@systemli.org>2021-09-14T10·54+0200
committersterni <sternenseemann@systemli.org>2021-09-14T14·02+0000
commit1883159f921d6c25ae894c231cd8bee6b4370720 (patch)
treeccd0fe7b902dee44acf01735904028e72155dc79 /nix
parent8e156e6b86c201d2696175eee55ef7bb6123ce85 (diff)
docs(nix/tag): correct comment for assertIsTag r/2855
Change-Id: Id54cc3a1d7c83c6a94b9446c76b00ca2ce1ab48e
Reviewed-on: https://cl.tvl.fyi/c/depot/+/3540
Tested-by: BuildkiteCI
Reviewed-by: Profpatsch <mail@profpatsch.de>
Diffstat (limited to 'nix')
-rw-r--r--nix/tag/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/tag/default.nix b/nix/tag/default.nix
index 766a456749..4fe5898258 100644
--- a/nix/tag/default.nix
+++ b/nix/tag/default.nix
@@ -24,7 +24,7 @@ let
       val = null;
     };
 
-  # like `isTag`, but throws the error message if it is not a tag.
+  # like `verifyTag`, but throws the error message if it is not a tag.
   assertIsTag = tag:
     let res = verifyTag tag; in
     assert lib.assertMsg res.isTag res.errmsg;