diff --git a/man/manual.docbook b/man/manual.docbook index 5c772731a..1bdca18ac 100644 --- a/man/manual.docbook +++ b/man/manual.docbook @@ -250,7 +250,7 @@ Checking path/file2.cpp... - + Preprocessor configurations By default Cppcheck will check all preprocessor configurations @@ -263,11 +263,11 @@ Checking path/file2.cpp... Beware that only the macros, which are given here and the macros defined in source files and known header files are considered. That excludes all the macros defined in some system header files, which are by - default not examined by cppcheck. + default not examined by Cppcheck. The usage: if you, for example, want to limit the checking so the - only configuration to check should be "DEBUG=1;__cplusplus" then something - like this can be used: + only configuration to check should be DEBUG=1;__cplusplus + then something like this can be used: cppcheck -DDEBUG=1 -D__cplusplus path @@ -617,9 +617,9 @@ htmlreport/cppcheck-htmlreport --file=err.xml --report-dir=test1 --source-dir=.< recommended that this known functionality is redefined. But feel free to try it. - As you can read in chapter 3 in this manual the default is that - Cppcheck checks all configurations. So only provide preprocessor defines - if you want to limit the checking. + As you can read in chapter + 3 in this manual the default is that Cppcheck checks all configurations. + So only provide preprocessor defines if you want to limit the checking. diff --git a/man/writing-rules-1.docbook b/man/writing-rules-1.docbook index ec4d10111..1dd1db043 100644 --- a/man/writing-rules-1.docbook +++ b/man/writing-rules-1.docbook @@ -1,5 +1,5 @@ -
+
Part 1 - Getting started
diff --git a/man/writing-rules-2.docbook b/man/writing-rules-2.docbook index 23156266e..5a246d6c0 100644 --- a/man/writing-rules-2.docbook +++ b/man/writing-rules-2.docbook @@ -1,5 +1,5 @@ -
+
Part 2 - The Cppcheck data representation
diff --git a/man/writing-rules-3.docbook b/man/writing-rules-3.docbook index 07078c3a0..cb5b56787 100644 --- a/man/writing-rules-3.docbook +++ b/man/writing-rules-3.docbook @@ -1,5 +1,5 @@ -
+
Part 3 - Introduction to writing rules with C++
@@ -83,9 +83,9 @@ void CheckOther::divisionByZeroError()
Condition before deallocation - In the first Writing rules article I described a - rule that looks for redundant conditions. Here is the regular expression - that was shown: + In the first Writing rules part + I described a rule that looks for redundant conditions. Here is the regular + expression that was shown: if \( p \) { free \( p \) ; }