shithub: riscv

Download patch

ref: 370bfd26ce5ffd9a06a314a20d1691cc6b15b712
parent: 3568e27ec8774a212564c8d2bf6b3d9a19d4d571
author: Ori Bernstein <ori@eigenstate.org>
date: Thu Jan 6 01:38:56 EST 2022

git: fix typo in git/log output

Commiter => Committer

--- a/sys/src/cmd/git/log.c
+++ b/sys/src/cmd/git/log.c
@@ -153,7 +153,7 @@
 		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;