diff --git a/subjects/vowels-index/README.md b/subjects/vowels-index/README.md index 8ca023b7..510ec5c9 100644 --- a/subjects/vowels-index/README.md +++ b/subjects/vowels-index/README.md @@ -8,7 +8,7 @@ ### Expected function ```go -func VowelIdx(str string) []int { +func vowelsindex(str string) []int { } ``` ### Usage @@ -20,7 +20,7 @@ import "fmt" func main() { - res := VowelIdx("hello Iyan") + res := vowelsindex("hello Iyan") for _, i := range res { fmt.Println(i) }