Skip to content

Commit dd9f0b3

Browse files
overclockedllamapoyea
overclockedllama
authored andcommitted
fix comma spelling from coma to comma (#722)
1 parent 2bbf8cd commit dd9f0b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: searches/linear_search.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def linear_search(sequence, target):
4343

4444

4545
if __name__ == '__main__':
46-
user_input = raw_input('Enter numbers separated by coma:\n').strip()
46+
user_input = raw_input('Enter numbers separated by comma:\n').strip()
4747
sequence = [int(item) for item in user_input.split(',')]
4848

4949
target_input = raw_input('Enter a single number to be found in the list:\n')

0 commit comments

Comments
 (0)