Closed squeek502 closed 3 years ago
Implements https://github.com/Hejsil/zig-clap/issues/28#issuecomment-913076259
The only change necessary for the zig-master branch would be to update the mem.split(help_text, "\n"); call to mem.split(u8, help_text, "\n");. I will submit a followup PR for that branch if this is merged.
zig-master
mem.split(help_text, "\n");
mem.split(u8, help_text, "\n");
Thanks :+1:
Implements https://github.com/Hejsil/zig-clap/issues/28#issuecomment-913076259
The only change necessary for the
zig-master
branch would be to update themem.split(help_text, "\n");
call tomem.split(u8, help_text, "\n");
. I will submit a followup PR for that branch if this is merged.