diff options
Diffstat (limited to '')
| -rw-r--r-- | clap.zig | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -1201,7 +1201,7 @@ pub fn help( | |||
| 1201 | const indented_line = if (first_line and !mem.startsWith(u8, raw_line, " ")) | 1201 | const indented_line = if (first_line and !mem.startsWith(u8, raw_line, " ")) |
| 1202 | raw_line | 1202 | raw_line |
| 1203 | else | 1203 | else |
| 1204 | raw_line[math.min(min_description_indent, raw_line.len)..]; | 1204 | raw_line[@min(min_description_indent, raw_line.len)..]; |
| 1205 | 1205 | ||
| 1206 | const line = mem.trimLeft(u8, indented_line, " "); | 1206 | const line = mem.trimLeft(u8, indented_line, " "); |
| 1207 | if (line.len == 0) { | 1207 | if (line.len == 0) { |