Skip to content

Commit

Permalink
Fix typo in the README of binary-search exercise
Browse files Browse the repository at this point in the history
  • Loading branch information
susutou committed Jan 13, 2016
1 parent bc396c6 commit aff4223
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion binary-search/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The classic example given is looking for a name in a phonebook, you first look i
Imagine a bunch of words in a list

```js
['apple banana', 'cherry', 'dates', 'eggs', 'figs', 'grapes']
['apple', 'banana', 'cherry', 'dates', 'eggs', 'figs', 'grapes']
```

If we looks for `cherry` then we first look at the middle of the array we have:
Expand Down

0 comments on commit aff4223

Please sign in to comment.