Skip to content

Commit

Permalink
Fix typo in doc block
Browse files Browse the repository at this point in the history
  • Loading branch information
gmazzap committed Aug 29, 2024
1 parent 73e9048 commit f53c2cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Package.php
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,9 @@ class Package
* @example
* <code>
* $package = Package::new();
* $package->statusIs(Package::IDLE); // true
* $package->statusIs(Package::STATUS_IDLE); // true
* $package->build();
* $package->statusIs(Package::INITIALIZED); // true
* $package->statusIs(Package::STATUS_INITIALIZED); // true
* $package->boot();
* $package->statusIs(Package::STATUS_DONE); // true
* </code>
Expand Down

0 comments on commit f53c2cd

Please sign in to comment.