docs: improve explanation of tags

"tagmask" is a misleading term as the arguments are used much more like
a set of tags than a mask.
This commit is contained in:
Isaac Freund
2020-12-30 14:25:37 +01:00
parent ac20f5aa1d
commit 5f4ba06566
3 changed files with 32 additions and 23 deletions

View File

@ -100,7 +100,7 @@ fn parseTags(
const tags = try std.fmt.parseInt(u32, args[1], 10);
if (tags == 0) {
out.* = try std.fmt.allocPrint(allocator, "tagmask may not be 0", .{});
out.* = try std.fmt.allocPrint(allocator, "tags may not be 0", .{});
return Error.Other;
}