Skip to content

Commit 593af93

Browse files
committed
Fix String.isEmpty doc string
1 parent 8759cfb commit 593af93

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
@@ -817,7 +817,7 @@ let searchOpt: (string, Stdlib_RegExp.t) => option<int>
817817
```rescript
818818
String.isEmpty("") == true
819819
String.isEmpty("hello") == false
820-
String.isEmpty(" ") == true
820+
String.isEmpty(" ") == false
821821
```
822822
*/
823823
let isEmpty: string => bool

0 commit comments

Comments
 (0)