Skip to content

Commit b3be7b2

Browse files
rodrigoprimojrfnl
andcommitted
Apply suggestion from @jrfnl
Co-authored-by: Juliette <663378+jrfnl@users.noreply.github.com>
1 parent 0d5c918 commit b3be7b2

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

WordPress/Docs/Arrays/ArrayDeclarationSpacingStandard.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@
55
>
66
<standard>
77
<![CDATA[
8-
Multi-item arrays using keys must be declared as multi-line arrays.
8+
Multi-item arrays with explicit keys must be declared as multi-line arrays.
99
]]>
1010
</standard>
1111
<code_comparison>
12-
<code title="Valid: Multi-item array using keys declared as multi-line.">
12+
<code title="Valid: Multi-item array with explicit keys declared as multi-line.">
1313
<![CDATA[
1414
$args = array(
1515
<em>'cat' => 1</em>,
1616
<em>'paged' => 2</em>,
1717
);
1818
]]>
1919
</code>
20-
<code title="Invalid: Single line multi-item array using keys.">
20+
<code title="Invalid: Single line multi-item array with explicit keys.">
2121
<![CDATA[
2222
$args = array( <em>'cat' => 1, 'paged' => 2</em> );
2323
]]>

0 commit comments

Comments
 (0)