From 12c28b6d335d8a1ac33978bbda899e0c24d41cd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sylvain=20Th=C3=A9nault?= Date: Wed, 22 Aug 2007 09:45:27 +0200 Subject: [PATCH] doc fixes --- checkers/exceptions.py | 4 ++-- doc/manual.txt | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/checkers/exceptions.py b/checkers/exceptions.py index 932813f23..166391587 100644 --- a/checkers/exceptions.py +++ b/checkers/exceptions.py @@ -35,11 +35,11 @@ MSGS = { 'W0701': ('Raising a string exception', 'Used when a string exception is raised.'), - 'W0702': ('No exception\'s type specified', + 'W0702': ('No exception type(s) specified', 'Used when an except clause doesn\'t specify exceptions type to \ catch.'), 'W0703': ('Catch "Exception"', - 'Used when an except catch Exception instances.'), + 'Used when an except catches Exception instances.'), 'W0704': ('Except doesn\'t do anything', 'Used when an except clause does nothing but "pass" and there is\ no "else" clause.'), diff --git a/doc/manual.txt b/doc/manual.txt index 53f9cfe88..6e8dad352 100644 --- a/doc/manual.txt +++ b/doc/manual.txt @@ -397,9 +397,13 @@ Advanced usage Base configuration ------------------ +To be written... + Environment ----------- +To be written... + Messages control ----------------