Skip to content

Commit bed98ab

Browse files
committed
Fix String.isEmpty doc string
1 parent 704e4e4 commit bed98ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runtime/Stdlib_String.resi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -802,7 +802,7 @@ let searchOpt: (string, Stdlib_RegExp.t) => option<int>
802802
```rescript
803803
String.isEmpty("") == true
804804
String.isEmpty("hello") == false
805-
String.isEmpty(" ") == true
805+
String.isEmpty(" ") == false
806806
```
807807
*/
808808
let isEmpty: string => bool

0 commit comments

Comments
 (0)