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>
This commit is contained in:
Lars Vogel 2016-06-09 20:19:30 +02:00 коммит произвёл Junio C Hamano
Родитель 49fa3dc761
Коммит 2a0e6cdeda
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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"));
}
}