We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8208ea7 commit 53c59e1Copy full SHA for 53c59e1
Sources/classdumpctl/main.m
@@ -357,9 +357,9 @@ int main(int argc, char *argv[]) {
357
struct option const *const option = options + optionIndex;
358
// test if we want to consume the next argument.
359
// `optional_argument` only provides `optarg` if the
360
- // command line paramter is in the format "--name=value",
+ // command line parameter is in the format "--name=value",
361
// this code allows us to consume "--name" "value".
362
- // We have to validate "value", otherwise we might accidently
+ // We have to validate "value", otherwise we might accidentally
363
// consume "--name" "--flag"
364
if (optarg == NULL && optind < argc) {
365
int const parse = parseOptargBool(argv[optind]);
0 commit comments