Skip to content
This repository was archived by the owner on Dec 26, 2023. It is now read-only.

Commit 52964f5

Browse files
committed
Update README.md
1 parent 83bed5f commit 52964f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Enumerated type for PHP by [Petr Knap].
1717

1818
## Why use Enums instead of Constants?
1919

20-
Because it is **safer and less scary** than using constants. Don't trust me? Let see at this code:
20+
Because **it is safer and less scary** than using constants. Don't trust me? Let see at this code:
2121

2222
```php
2323
class MyBoolean
@@ -44,7 +44,7 @@ isTrue(true); // returns true - OK
4444
isTrue(false); // returns null - WTF?
4545
```
4646

47-
And now the same code with Enums instead of Constants:
47+
And now the **same code with Enum** instead of Constants:
4848

4949
```php
5050
class MyBoolean extends \PetrKnap\Php\Enum\AbstractEnum

0 commit comments

Comments
 (0)