Skip to content

Commit

Permalink
fixed spelling of coma to comma
Browse files Browse the repository at this point in the history
  • Loading branch information
sarbajitsaha committed Oct 15, 2017
1 parent 4c9efea commit d70b926
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion searches/binary_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def __assert_sorted(collection):
else:
input_function = input

user_input = input_function('Enter numbers separated by coma:\n')
user_input = input_function('Enter numbers separated by comma:\n')
collection = [int(item) for item in user_input.split(',')]
try:
__assert_sorted(collection)
Expand Down

0 comments on commit d70b926

Please sign in to comment.