summaryrefslogtreecommitdiff
path: root/examples/blame.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/blame.c')
-rw-r--r--examples/blame.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/blame.c b/examples/blame.c
index 954c97b17..77087a577 100644
--- a/examples/blame.c
+++ b/examples/blame.c
@@ -49,7 +49,7 @@ int lg2_blame(git_repository *repo, int argc, char *argv[])
if (o.F) blameopts.flags |= GIT_BLAME_FIRST_PARENT;
/**
- * The commit range comes in "commitish" form. Use the rev-parse API to
+ * The commit range comes in "committish" form. Use the rev-parse API to
* nail down the end points.
*/
if (o.commitspec) {
@@ -70,7 +70,7 @@ int lg2_blame(git_repository *repo, int argc, char *argv[])
/**
* Get the raw data inside the blob for output. We use the
- * `commitish:path/to/file.txt` format to find it.
+ * `committish:path/to/file.txt` format to find it.
*/
if (git_oid_is_zero(&blameopts.newest_commit))
strcpy(spec, "HEAD");