summaryrefslogtreecommitdiff
path: root/wt-status.c
diff options
context:
space:
mode:
authorLars Vogel <lars.vogel@gmail.com>2016-06-09 18:19:30 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-06-09 19:21:52 (GMT)
commit2a0e6cdedab306eccbd297c051035c13d0266343 (patch)
treecd9609b0f94dd12d5293163d4c7287833d760b21 /wt-status.c
parent49fa3dc76179e04b0833542fa52d0f287a4955ac (diff)
downloadgit-2a0e6cdedab306eccbd297c051035c13d0266343.zip
git-2a0e6cdedab306eccbd297c051035c13d0266343.tar.gz
git-2a0e6cdedab306eccbd297c051035c13d0266343.tar.bz2
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 <Lars.Vogel@vogella.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'wt-status.c')
-rw-r--r--wt-status.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/wt-status.c b/wt-status.c
index 4f27bd6..4ce4e35 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"));
}
}