diff options
author | Sylvain Thénault <sylvain.thenault@logilab.fr> | 2006-11-15 19:43:01 +0100 |
---|---|---|
committer | Sylvain Thénault <sylvain.thenault@logilab.fr> | 2006-11-15 19:43:01 +0100 |
commit | 7b4d9c2d493a7b5edd2e8cf948c6f5fbf00e823e (patch) | |
tree | 8433114902d7d4cad650c2a4afc5004b93bb5871 /checkers | |
parent | f7fb293652ea3771c113357bca025371bade4ff5 (diff) | |
download | pylint-git-7b4d9c2d493a7b5edd2e8cf948c6f5fbf00e823e.tar.gz |
fix typo
Diffstat (limited to 'checkers')
-rw-r--r-- | checkers/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checkers/base.py b/checkers/base.py index 5559ca7db..34cc774ff 100644 --- a/checkers/base.py +++ b/checkers/base.py @@ -117,7 +117,7 @@ MSGS = { has no effect). This is a particular case of W0104 with its \ own message so you can easily disable it if you\'re using \ those strings as documentation, instead of comments.'), - 'W0106': ('Unnecessary semi-column', + 'W0106': ('Unnecessary semicolon', 'Used when a statement is endend by a semi-colon (";"), which \ isn\'t necessary (that\'s python, not C ;)'), |