Skip to content

Commit 88950e3

Browse files
committed
Generic/IncrementDecrementSpacing: fix position of <em> tags in the docs
1 parent 39755ea commit 88950e3

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
@@ -29,9 +29,9 @@
2929
<code_comparison>
3030
<code title="Valid: No whitespaces between a variable and a post-increment/post-decrement operator.">
3131
<![CDATA[
32-
<em></em>$i++;
33-
<em></em>ClassName::$prop++;
34-
<em></em>$obj->prop--;
32+
$i<em></em>++;
33+
ClassName::$prop<em></em>++;
34+
$obj->prop<em></em>--;
3535
]]>
3636
</code>
3737
<code title="Invalid: Whitespaces found between a variable and a post-increment/post-decrement operator.">

0 commit comments

Comments
 (0)