summaryrefslogtreecommitdiff
path: root/sys/src/cmd/git
diff options
context:
space:
mode:
authorOri Bernstein <ori@eigenstate.org>2022-01-06 06:38:56 +0000
committerOri Bernstein <ori@eigenstate.org>2022-01-06 06:38:56 +0000
commit370bfd26ce5ffd9a06a314a20d1691cc6b15b712 (patch)
tree71a75b4e46499f60285400efacb6af1f41ddbd09 /sys/src/cmd/git
parent3568e27ec8774a212564c8d2bf6b3d9a19d4d571 (diff)
git: fix typo in git/log output
Commiter => Committer
Diffstat (limited to 'sys/src/cmd/git')
-rw-r--r--sys/src/cmd/git/log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/git/log.c b/sys/src/cmd/git/log.c
index 433ccc572..1e014744d 100644
--- a/sys/src/cmd/git/log.c
+++ b/sys/src/cmd/git/log.c
@@ -153,7 +153,7 @@ show(Object *o)
Bprint(out, "Author:\t%s\n", o->commit->author);
if(o->commit->committer != nil
&& strcmp(o->commit->author, o->commit->committer) != 0)
- Bprint(out, "Commiter:\t%s\n", o->commit->committer);
+ Bprint(out, "Committer:\t%s\n", o->commit->committer);
Bprint(out, "Date:\t%τ\n", tmfmt(&tm, "WW MMM D hh:mm:ss z YYYY"));
Bprint(out, "\n");
p = o->commit->msg;