From: Jonas Fonseca Date: Wed, 17 May 2006 15:58:54 +0000 (+0200) Subject: Minor doc and coding style fixes X-Git-Tag: tig-0.4~96 X-Git-Url: https://git.distorted.org.uk/~mdw/tig/commitdiff_plain/c6704a4ec7f96749cbef736fa24c6b90e35f7689 Minor doc and coding style fixes --- diff --git a/tig.c b/tig.c index c3ed1f1..f68991c 100644 --- a/tig.c +++ b/tig.c @@ -600,7 +600,7 @@ init_colors(void) * * The main view:: * Is the default view, and it shows a one line summary of each commit - * in the chosen list of revision. The summary includes commit date, + * in the chosen list of revisions. The summary includes commit date, * author, and the first line of the log message. Additionally, any * repository references, such as tags, will be shown. * @@ -2046,7 +2046,8 @@ quit(int sig) exit(0); } -static void __NORETURN die(const char *err, ...) +static void __NORETURN +die(const char *err, ...) { va_list args; @@ -2265,5 +2266,6 @@ main(int argc, char *argv[]) * link:http://www.kernel.org/pub/software/scm/git/docs/[git(7)], * link:http://www.kernel.org/pub/software/scm/cogito/docs/[cogito(7)] * gitk(1): git repository browser written using tcl/tk, + * qgit(1): git repository browser written using c++/Qt, * gitview(1): git repository browser written using python/gtk. **/