summaryrefslogtreecommitdiff
path: root/compat
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2013-04-11 22:36:10 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-04-12 19:24:04 (GMT)
commit0f7b4c2e77a353f027b9c9869b588145fb036520 (patch)
treebadfb8395f0045f0957f419e2255a8ef45c47c30 /compat
parent4283b8e4085726330fe1e7927e527ffa8d37f79a (diff)
downloadgit-0f7b4c2e77a353f027b9c9869b588145fb036520.zip
git-0f7b4c2e77a353f027b9c9869b588145fb036520.tar.gz
git-0f7b4c2e77a353f027b9c9869b588145fb036520.tar.bz2
precompose-utf8: fix spelling of "want" in error message
Noticed using Lucas De Marchi's codespell tool. Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com> Signed-off-by: Jonathan Nieder <jrnieder@gmail.com> Acked-by: Matthieu Moy <Matthieu.Moy@imag.fr> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'compat')
-rw-r--r--compat/precompose_utf8.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/precompose_utf8.c b/compat/precompose_utf8.c
index 8cf5955..030174d 100644
--- a/compat/precompose_utf8.c
+++ b/compat/precompose_utf8.c
@@ -134,7 +134,7 @@ struct dirent_prec_psx *precompose_utf8_readdir(PREC_DIR *prec_dir)
if (prec_dir->ic_precompose == (iconv_t)-1) {
die("iconv_open(%s,%s) failed, but needed:\n"
" precomposed unicode is not supported.\n"
- " If you wnat to use decomposed unicode, run\n"
+ " If you want to use decomposed unicode, run\n"
" \"git config core.precomposeunicode false\"\n",
repo_encoding, path_encoding);
} else {