From d32805dce7bdc45a3e4045e999fc5d56e3b46a82 Mon Sep 17 00:00:00 2001 From: Matthieu Moy Date: Tue, 12 Feb 2013 10:24:44 +0100 Subject: Replace filepattern with pathspec for consistency pathspec is the most widely used term, and is the one defined in gitglossary.txt. was used only in the synopsys for git-add and git-commit, and in git-add.txt. Get rid of it. This patch is obtained with by running: perl -pi -e 's/filepattern/pathspec/' `git grep -l filepattern` Signed-off-by: Matthieu Moy Signed-off-by: Junio C Hamano --- builtin/add.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'builtin/add.c') diff --git a/builtin/add.c b/builtin/add.c index e664100c71..632594768d 100644 --- a/builtin/add.c +++ b/builtin/add.c @@ -16,7 +16,7 @@ #include "bulk-checkin.h" static const char * const builtin_add_usage[] = { - N_("git add [options] [--] ..."), + N_("git add [options] [--] ..."), NULL }; static int patch_interactive, add_interactive, edit_interactive; -- cgit v1.2.3