Skip to content

Commit

Permalink
Fix simple typo: taget -> target (keon#591)
Browse files Browse the repository at this point in the history
  • Loading branch information
timgates42 authored and keon committed Nov 11, 2019
1 parent 93b14ab commit a9aad22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion algorithms/search/jump_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def jump_search(arr,target):
block_prev = 0
block= block_size

# return -1 means that array doesn't contain taget value
# return -1 means that array doesn't contain target value
# find block that contains target value

if arr[n - 1] < target:
Expand Down

0 comments on commit a9aad22

Please sign in to comment.