diff options
author | sterni <sternenseemann@systemli.org> | 2021-09-14T10·54+0200 |
---|---|---|
committer | sterni <sternenseemann@systemli.org> | 2021-09-14T14·02+0000 |
commit | 1883159f921d6c25ae894c231cd8bee6b4370720 (patch) | |
tree | ccd0fe7b902dee44acf01735904028e72155dc79 /nix/tag | |
parent | 8e156e6b86c201d2696175eee55ef7bb6123ce85 (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/tag')
-rw-r--r-- | nix/tag/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/tag/default.nix b/nix/tag/default.nix index 766a45674933..4fe589825848 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; |