Skip to content

Commit 344a87f

Browse files
rodrigoprimojrfnl
authored andcommitted
Fix typos
1 parent 91b5d0a commit 344a87f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Standards/Generic/Docs/WhiteSpace/IncrementDecrementSpacingStandard.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
<documentation title="Increment Decrement Spacing">
22
<standard>
33
<![CDATA[
4-
There should be no whitespaces between variables and increment/decrement operators.
4+
There should be no whitespace between variables and increment/decrement operators.
55
]]>
66
</standard>
77
<code_comparison>
8-
<code title="Valid: No whitespaces between variables and increment/decrement operators.">
8+
<code title="Valid: No whitespace between variables and increment/decrement operators.">
99
<![CDATA[
1010
++<em></em>$i;
1111
--<em></em>$i['key']['id'];
1212
ClassName::$prop<em></em>++;
1313
$obj->prop<em></em>--;
1414
]]>
1515
</code>
16-
<code title="Invalid: One or more whitespaces between variables and increment/decrement operators.">
16+
<code title="Invalid: Whitespace between variables and increment/decrement operators.">
1717
<![CDATA[
1818
++<em> </em>$i;
1919
--<em> </em>$i['key']['id'];

0 commit comments

Comments
 (0)