Skip to content

Commit 667e0ee

Browse files
authored
Update contains_only_empty_strings.ts
1 parent ad21887 commit 667e0ee

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/array/contains_only_empty_strings.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
*
44
* @example
55
* ```ts
6-
* console.log(isEmpty([' ']))
6+
* console.log(containsOnlyEmptyStrings([' ']))
77
* // false
88
*
9-
* console.log(isEmpty(['']))
9+
* console.log(containsOnlyEmptyStrings(['']))
1010
* // true
1111
*
12-
* console.log(isEmpty([
12+
* console.log(containsOnlyEmptyStrings([
1313
* '',
1414
* ''
1515
* ]))

0 commit comments

Comments
 (0)