Skip to content

Commit

Permalink
doc(Command): Fix doc comment
Browse files Browse the repository at this point in the history
  • Loading branch information
PrajwalCH committed Sep 1, 2022
1 parent f6ca476 commit 9809da2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Command.zig
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ pub fn takesNValues(self: *Command, arg_name: []const u8, n: usize) !void {
self.takesValue(true);
}

/// Specifies that the command takes value. Default to 'false
/// Specifies that the command takes value. Default to 'false`
pub fn takesValue(self: *Command, b: bool) void {
self.setting.takes_value = b;
}
Expand Down

0 comments on commit 9809da2

Please sign in to comment.