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