Skip to content

Commit 2a1dff7

Browse files
authored
Merge pull request #97 from masx200/deno-dependency-updates
Update dependencies
2 parents 63cc91c + 97219f3 commit 2a1dff7

File tree

1 file changed

+1
-1
lines changed
  • check-if-a-word-occurs-as-a-prefix-of-any-word-in-a-sentence

1 file changed

+1
-1
lines changed

check-if-a-word-occurs-as-a-prefix-of-any-word-in-a-sentence/index.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ func isPrefixOfWord(sentence string, searchWord string) int {
1313
}
1414
}
1515

16-
//func FindIndex[S ~[]T, T any](items S, f func(el T) bool) int {
16+
// func FindIndex[S ~[]T, T any](items S, f func(el T) bool) int {
1717
func FindIndex(items []string, f func(el string) bool) int {
1818
for i, el := range items {
1919
if f(el) {

0 commit comments

Comments
 (0)