diff options
author | Damien Regad <dregad@mantisbt.org> | 2017-02-19 23:32:32 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-02-21 22:02:42 +0100 |
commit | 115a40add6140577978bdd3742f63eb3fdd00c80 (patch) | |
tree | 9a2d4141582f6a179316d2178e3f9fcd1b7d670d | |
parent | Git 2.11.1 (diff) | |
download | git-115a40add6140577978bdd3742f63eb3fdd00c80.tar.xz git-115a40add6140577978bdd3742f63eb3fdd00c80.zip |
git-check-ref-format: clarify documentation for --normalize
Use of 'iff' may be confusing to people not familiar with this term.
Improving the --normalize option's documentation to remove the use of
'iff', and clearly describe what happens when the condition is not met.
Signed-off-by: Damien Regad <dregad@mantisbt.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | Documentation/git-check-ref-format.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/git-check-ref-format.txt b/Documentation/git-check-ref-format.txt index 8611a99120..92777cef25 100644 --- a/Documentation/git-check-ref-format.txt +++ b/Documentation/git-check-ref-format.txt @@ -100,10 +100,10 @@ OPTIONS --normalize:: Normalize 'refname' by removing any leading slash (`/`) characters and collapsing runs of adjacent slashes between - name components into a single slash. Iff the normalized + name components into a single slash. If the normalized refname is valid then print it to standard output and exit - with a status of 0. (`--print` is a deprecated way to spell - `--normalize`.) + with a status of 0, otherwise exit with a non-zero status. + (`--print` is a deprecated way to spell `--normalize`.) EXAMPLES |