Skip to content

Commit 046c1f8

Browse files
committed
Docs/PEAR//FileComment: fix up swapped valid/invalid blocks
The `invalid` block for the "tag order" was next to the "valid" PHP version code sample and visa versa.
1 parent 9e0b685 commit 046c1f8

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/Standards/PEAR/Docs/Commenting/FileCommentStandard.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -231,16 +231,14 @@
231231
*/
232232
]]>
233233
</code>
234-
<code title="Invalid: Category and package tags are swapped in order.">
234+
<code title="Invalid: No PHP version specified.">
235235
<![CDATA[
236236
<?php
237237
/**
238238
* Short description here.
239239
*
240-
* PHP version 5
241-
*
242-
* <em>@package</em> Foo_Helpers
243-
* <em>@category</em> Foo
240+
* @category Foo
241+
* @package Foo_Helpers
244242
* @author Marty McFly <[email protected]>
245243
* @copyright 2013-2014 Foo Inc.
246244
* @license MIT License
@@ -267,14 +265,16 @@
267265
*/
268266
]]>
269267
</code>
270-
<code title="Invalid: No PHP version specified.">
268+
<code title="Invalid: Category and package tags are swapped in order.">
271269
<![CDATA[
272270
<?php
273271
/**
274272
* Short description here.
275273
*
276-
* @category Foo
277-
* @package Foo_Helpers
274+
* PHP version 5
275+
*
276+
* <em>@package</em> Foo_Helpers
277+
* <em>@category</em> Foo
278278
* @author Marty McFly <[email protected]>
279279
* @copyright 2013-2014 Foo Inc.
280280
* @license MIT License

0 commit comments

Comments
 (0)