Skip to content

Commit

Permalink
Fix: minor typos (#111)
Browse files Browse the repository at this point in the history
<!--- Please provide a general summary of your changes in the title
above -->

## Pull Request type

<!-- Please try to limit your pull request to one type; submit multiple
pull requests if needed. -->

Please check the type of change your PR introduces:

- [ ] Bugfix
- [ ] Feature
- [ ] Code style update (formatting, renaming)
- [ ] Refactoring (no functional changes, no API changes)
- [ ] Build-related changes
- [ ] Documentation content changes
- [x] Typos

## Does this introduce a breaking change?

- [ ] Yes
- [x] No

<!-- If this does introduce a breaking change, please describe the
impact and migration path for existing applications below. -->
  • Loading branch information
omahs authored Jun 8, 2023
1 parent ac6404e commit 9aa6caf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion alexandria/searching/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

## [Binary search](./src/binary_search.cairo)

The binary search algorithm is a simple search in an ordered array-like compound. It start by comparing the value we are looking for to the middle of the array. If it's not a match, the function calls itself recursively on the right or left half of the array until is does(n't) find the value in the array.
The binary search algorithm is a simple search in an ordered array-like compound. It starts by comparing the value we are looking for to the middle of the array. If it's not a match, the function calls itself recursively on the right or left half of the array until it does(n't) find the value in the array.

0 comments on commit 9aa6caf

Please sign in to comment.