Skip to content

Commit ad21887

Browse files
authored
Update contains_only_empty_strings.ts
1 parent 5a1706a commit ad21887

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/array/contains_only_empty_strings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* // true
1717
* ```
1818
* @param input The input array to check
19-
* @return If the array is empty
19+
* @returns If the array only contains empty strings
2020
*/
2121
export default function containsOnlyEmptyStrings(input : string[]) : boolean {
2222
return input.join('') === '';

0 commit comments

Comments
 (0)