Skip to content

Commit 97219f3

Browse files
authored
Update dependencies
1 parent 7cc13d3 commit 97219f3

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)