diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2008-01-16 16:18:32 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2008-01-16 16:18:32 +0000 |
commit | 6b588eb77e2c53e7045ac9be4d1864563f11674d (patch) | |
tree | b5d8f87a606804dd68f5ac72c0c0d129e1ae81fb /lisp/whitespace.el | |
parent | d7cd2d8b4eb0e0b0e2bbe77d2fe48d4a0c353055 (diff) | |
download | emacs-6b588eb77e2c53e7045ac9be4d1864563f11674d.tar.gz |
(whitespace-check-leading-whitespace, whitespace-check-trailing-whitespace,
whitespace-check-spacetab-whitespace, whitespace-check-indent-whitespace,
whitespace-check-ateol-whitespace): Fix typos in docstrings.
Diffstat (limited to 'lisp/whitespace.el')
-rw-r--r-- | lisp/whitespace.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/whitespace.el b/lisp/whitespace.el index d9aad2a2eea..a250f24ddaa 100644 --- a/lisp/whitespace.el +++ b/lisp/whitespace.el @@ -171,21 +171,21 @@ don't define it." (defcustom whitespace-check-leading-whitespace t "Flag to check leading whitespace. This is the global for the system. -It can be overriden by setting a buffer local variable +It can be overridden by setting a buffer local variable `whitespace-check-buffer-leading'." :type 'boolean :group 'whitespace) (defcustom whitespace-check-trailing-whitespace t "Flag to check trailing whitespace. This is the global for the system. -It can be overriden by setting a buffer local variable +It can be overridden by setting a buffer local variable `whitespace-check-buffer-trailing'." :type 'boolean :group 'whitespace) (defcustom whitespace-check-spacetab-whitespace t "Flag to check space followed by a TAB. This is the global for the system. -It can be overriden by setting a buffer local variable +It can be overridden by setting a buffer local variable `whitespace-check-buffer-spacetab'." :type 'boolean :group 'whitespace) @@ -197,7 +197,7 @@ It can be overriden by setting a buffer local variable (defcustom whitespace-check-indent-whitespace indent-tabs-mode "Flag to check indentation whitespace. This is the global for the system. -It can be overriden by setting a buffer local variable +It can be overridden by setting a buffer local variable `whitespace-check-buffer-indent'." :type 'boolean :group 'whitespace) @@ -210,7 +210,7 @@ The default value ignores leading TABs." (defcustom whitespace-check-ateol-whitespace t "Flag to check end-of-line whitespace. This is the global for the system. -It can be overriden by setting a buffer local variable +It can be overridden by setting a buffer local variable `whitespace-check-buffer-ateol'." :type 'boolean :group 'whitespace) |