From 2a0e6cdedab306eccbd297c051035c13d0266343 Mon Sep 17 00:00:00 2001 From: Lars Vogel Date: Thu, 9 Jun 2016 20:19:30 +0200 Subject: [PATCH] Use "working tree" instead of "working directory" for git status 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 Signed-off-by: Junio C Hamano --- wt-status.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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")); } } -- 2.11.4.GIT