<ol>
<li>Constructors for C++ classes should initialize all of their members using C++
-initializer synatax. Each member (and superclass) should be indented on a separate
+initializer syntax. Each member (and superclass) should be indented on a separate
line, with the colon or comma preceding the member on that line.
<h4 class="right">Right:</h4>
<li>Pointer and reference types in C++ code — Both pointer types and reference types
should be written with no space between the type name and the * or &.
-</ol>
-
<h4 class="right">Right:</h4>
<pre class="code">
Image* SVGStyledElement::doSomething(PaintInfo& paintInfo)
const KCDashArray &dashes = dashArray();
</pre>
+</ol>
+
<h3>#include Statements</h3>
<ol>