summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Vogel <lars.vogel@gmail.com>2016-06-09 20:19:30 +0200
committerJunio C Hamano <gitster@pobox.com>2016-06-09 12:21:52 -0700
commit2a0e6cdedab306eccbd297c051035c13d0266343 (patch)
treecd9609b0f94dd12d5293163d4c7287833d760b21
parent49fa3dc76179e04b0833542fa52d0f287a4955ac (diff)
downloadgit-lv/status-say-working-tree-not-directory.tar.gz
Use "working tree" instead of "working directory" for git statuslv/status-say-working-tree-not-directory
Working directory can be easily confused with the current directory. In one of my patches I already updated the usage of working directory with working tree for the man page but I noticed that git status also uses this incorrect term. Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--wt-status.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/wt-status.c b/wt-status.c
index 4f27bd62af..4ce4e35ac3 100644
--- a/wt-status.c
+++ b/wt-status.c
@@ -1554,7 +1554,7 @@ void wt_status_print(struct wt_status *s)
else
printf(_("nothing to commit\n"));
} else
- printf(_("nothing to commit, working directory clean\n"));
+ printf(_("nothing to commit, working tree clean\n"));
}
}