]> git.proxmox.com Git - libgit2.git/blobdiff - examples/blame.c
New upstream version 1.4.3+dfsg.1
[libgit2.git] / examples / blame.c
index 954c97b17d170397d2c9f8e743e096e06e64f9e5..77087a5771abc4a21ec97c7fa06bb2ac4e45189d 100644 (file)
@@ -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");