diff options
author | Dmitry Ivankov <divanorama@gmail.com> | 2011-06-16 18:22:39 +0600 |
---|---|---|
committer | Pat Thoyts <patthoyts@users.sourceforge.net> | 2011-07-11 11:26:47 +0100 |
commit | c5c45e1a2ddc28101ad19615ef6f9e0e08822206 (patch) | |
tree | 3fde5181053cba5e5865d539d334f22721766278 | |
parent | 8c0bf68353ed3394039ca04c01ded39a4f5643ea (diff) | |
download | git-c5c45e1a2ddc28101ad19615ef6f9e0e08822206.tar.gz git-c5c45e1a2ddc28101ad19615ef6f9e0e08822206.tar.xz |
Fix typo: existant->existent
This typo was discovered in core git sources.
Clean in it up in git-gui too.
There is just one occurence in a comment line.
Signed-off-by: Dmitry Ivankov <divanorama@gmail.com>
Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
-rwxr-xr-x | git-gui.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-gui.sh b/git-gui.sh index 470b13528..f8971603f 100755 --- a/git-gui.sh +++ b/git-gui.sh @@ -1527,7 +1527,7 @@ proc run_prepare_commit_msg_hook {} { # prepare-commit-msg requires PREPARE_COMMIT_MSG exist. From git-gui # it will be .git/MERGE_MSG (merge), .git/SQUASH_MSG (squash), or an - # empty file but existant file. + # empty file but existent file. set fd_pcm [open [gitdir PREPARE_COMMIT_MSG] a] |