Skip to content

Commit 53c59e1

Browse files
committed
[General] Minor spelling fixes in comments
1 parent 8208ea7 commit 53c59e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/classdumpctl/main.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -357,9 +357,9 @@ int main(int argc, char *argv[]) {
357357
struct option const *const option = options + optionIndex;
358358
// test if we want to consume the next argument.
359359
// `optional_argument` only provides `optarg` if the
360-
// command line paramter is in the format "--name=value",
360+
// command line parameter is in the format "--name=value",
361361
// this code allows us to consume "--name" "value".
362-
// We have to validate "value", otherwise we might accidently
362+
// We have to validate "value", otherwise we might accidentally
363363
// consume "--name" "--flag"
364364
if (optarg == NULL && optind < argc) {
365365
int const parse = parseOptargBool(argv[optind]);

0 commit comments

Comments
 (0)