aboutsummaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorWesley J. Landaker <wjl@icecavern.net>2012-09-17 08:22:15 -0600
committerJunio C Hamano <gitster@pobox.com>2012-09-17 10:23:21 -0700
commit2ce4fee8785f5c3cc7955fcc9dff8d516f8c95f7 (patch)
treecc8019342d6dcae7b38adcb21654ad1a75282cec /Documentation
parent7dd9ab0c8b3ca7ae03d54e741e7a554c192ef02f (diff)
downloadgit-2ce4fee8785f5c3cc7955fcc9dff8d516f8c95f7.tar.gz
git-2ce4fee8785f5c3cc7955fcc9dff8d516f8c95f7.tar.xz
Documentation: indent-with-non-tab uses "equivalent tabs" not 8
Update the documentation of the core.whitespace option "indent-with-non-tab" to correctly reflect that it catches the use of spaces instead of the equivalent tabs, rather than a fixed number. Signed-off-by: Wesley J. Landaker <wjl@icecavern.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/config.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt
index a95e5a4ac..122e3c499 100644
--- a/Documentation/config.txt
+++ b/Documentation/config.txt
@@ -559,8 +559,9 @@ core.whitespace::
* `space-before-tab` treats a space character that appears immediately
before a tab character in the initial indent part of the line as an
error (enabled by default).
-* `indent-with-non-tab` treats a line that is indented with 8 or more
- space characters as an error (not enabled by default).
+* `indent-with-non-tab` treats a line that is indented with space
+ characters instead of the equivalent tabs as an error (not enabled by
+ default).
* `tab-in-indent` treats a tab character in the initial indent part of
the line as an error (not enabled by default).
* `blank-at-eof` treats blank lines added at the end of file as an error