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

Commit 585e40a

Browse files
committed
Update README.md
1 parent fd3de36 commit 585e40a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,10 @@ function IsTrue(MyBoolen $myBoolean)
6868

6969
IsTrue(MyBoolen::MY_TRUE()); // returns true - OK
7070
IsTrue(MyBoolen::MY_FALSE()); // returns false - OK
71-
IsTrue(1); // uncaught TypeError
72-
IsTrue(2); // uncaught TypeError
73-
IsTrue(true); // uncaught TypeError
74-
IsTrue(false); // uncaught TypeError
71+
IsTrue(1); // uncaught TypeError - OK
72+
IsTrue(2); // uncaught TypeError - OK
73+
IsTrue(true); // uncaught TypeError - OK
74+
IsTrue(false); // uncaught TypeError - OK
7575
```
7676

7777

0 commit comments

Comments
 (0)