Skip to content

Commit

Permalink
Convert to Traits: Fix docs in .build.php
Browse files Browse the repository at this point in the history
  • Loading branch information
raamdev committed Mar 1, 2016
1 parent be95571 commit 59cd390
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/includes/traits/Ac/.build.php
Expand Up @@ -3,7 +3,7 @@
* Generate use-list for Trait files in current directory
*
* When run inside a directory called `Plugin/`, with a PHP file inside `Plugin/` called `ActionUtils.php`,
* this script will generate `use Traits\Plugin\ActionUtils`.
* this script will generate `use Traits\Plugin\ActionUtils;`.
*/
if ($_handle = opendir(__DIR__)) {
while (false !== ($_file = readdir($_handle))) {
Expand Down
2 changes: 1 addition & 1 deletion src/includes/traits/Shared/.build.php
Expand Up @@ -3,7 +3,7 @@
* Generate use-list for Trait files in current directory
*
* When run inside a directory called `Plugin/`, with a PHP file inside `Plugin/` called `ActionUtils.php`,
* this script will generate `use Traits\Plugin\ActionUtils`.
* this script will generate `use Traits\Plugin\ActionUtils;`.
*/
if ($_handle = opendir(__DIR__)) {
while (false !== ($_file = readdir($_handle))) {
Expand Down

0 comments on commit 59cd390

Please sign in to comment.