aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md4
-rw-r--r--doc/example.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 3356e99..c651acd 100644
--- a/README.md
+++ b/README.md
@@ -87,7 +87,7 @@ int main(int argc, char **argv)
simple_opt_print_usage(stdout, 80, argv[0],
"[OPTION]... [--] [NON-OPTION]...",
"This is where you would put an overview description of the "
- "program and it's general functionality.", options);
+ "program and its general functionality.", options);
return 0;
}
@@ -178,7 +178,7 @@ like this:
$ ./a.out --help
Usage: ./a.out [OPTION]... [--] [NON-OPTION]...
- This is where you would put an overview description of the program and it's
+ This is where you would put an overview description of the program and its
general functionality.
-h --help print this help message and exit
diff --git a/doc/example.c b/doc/example.c
index 426515a..fee399b 100644
--- a/doc/example.c
+++ b/doc/example.c
@@ -67,7 +67,7 @@ int main(int argc, char **argv)
simple_opt_print_usage(stdout, 80, argv[0],
"[OPTION]... [--] [NON-OPTION]...",
"This is where you would put an overview description of the "
- "program and it's general functionality.", options);
+ "program and its general functionality.", options);
return 0;
}