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

Commit 39accba

Browse files
committed
Update README.md
1 parent ccc13cb commit 39accba

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(MyBoolean $myBoolean)
6868

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

7777

0 commit comments

Comments
 (0)