From: Jonathan Nieder Date: Sun, 14 Feb 2010 11:55:53 +0000 (-0600) Subject: Fix 'git var' usage synopsis X-Git-Tag: v1.7.0.2~6^2~7 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=9fabb6d7513ab0a264de146d72a8447bc85b5e85;p=git.git Fix 'git var' usage synopsis The parameter to 'git var' is not optional. Signed-off-by: Jonathan Nieder Signed-off-by: Junio C Hamano --- diff --git a/Documentation/git-var.txt b/Documentation/git-var.txt index bb981822a..458f3e275 100644 --- a/Documentation/git-var.txt +++ b/Documentation/git-var.txt @@ -8,7 +8,7 @@ git-var - Show a git logical variable SYNOPSIS -------- -'git var' [ -l | ] +'git var' ( -l | ) DESCRIPTION ----------- diff --git a/builtin-var.c b/builtin-var.c index 228051819..e6ee7bc0b 100644 --- a/builtin-var.c +++ b/builtin-var.c @@ -6,7 +6,7 @@ #include "cache.h" #include "exec_cmd.h" -static const char var_usage[] = "git var [-l | ]"; +static const char var_usage[] = "git var (-l | )"; static const char *editor(int flag) {