summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorDimitris Apostolou <dimitris.apostolou@icloud.com>2022-01-05 12:18:05 +0200
committerDimitris Apostolou <dimitris.apostolou@icloud.com>2022-01-05 16:35:52 +0200
commit90df43022a011f23f13b7a77a956e3f64e4134a5 (patch)
treeb7a0a0e24c5dae8bdb277954c33f75d822503af6 /examples
parent82f526a9129373d899782c411774c8e396cae4e4 (diff)
downloadlibgit2-90df43022a011f23f13b7a77a956e3f64e4134a5.tar.gz
Fix typos
Diffstat (limited to 'examples')
-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");