Skip to content

Commit 32c722c

Browse files
committed
Changed
1 parent 16302af commit 32c722c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

public/data/python.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"description": "Counts the number of vowels in a string.",
3535
"code": [
3636
"def count_vowels(s):",
37-
" vowels = 'aeiouAEIOU'",
37+
" vowels = 'aeiou'",
3838
" return len([char for char in s.lower() if char in vowels])",
3939
"",
4040
"# Usage:",

0 commit comments

Comments
 (0)