Writing rules: minor tweak for the C++ intro

This commit is contained in:
Daniel Marjamäki 2011-01-08 11:10:10 +01:00
parent c39fab721d
commit 8715fef681
1 changed files with 2 additions and 4 deletions

View File

@ -114,10 +114,8 @@ void CheckOther::divisionByZeroError()
<programlisting>if ( %var% ) { free ( %var% ) ; }</programlisting>
<para>The <literal>%var%</literal> pattern is used to match any variable
name.</para>
<para>Here is a C++ function:</para>
<para>The <literal>%var%</literal> pattern match any variable name. Here
is a C++ function:</para>
<programlisting>// Find redundant condition before deallocation
void CheckOther::dealloc()