Skip to content

Commit

Permalink
Fix spelling mistake in README
Browse files Browse the repository at this point in the history
  • Loading branch information
DelSkayn committed May 10, 2024
1 parent d8dea3d commit e72477d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ overflow the stack, regardless of depth.
## What is this crate for?

There are some types of algorithms which are easiest to write as a recursive algorithm.
Examples include a recursive decent parsers and tree-walking interpreters.
Examples include a recursive descent parsers and tree-walking interpreters.
These algorithms often need to keep track of complex stack of state and are therefore easiest to write as a set of recursive function calling each other.
This does however have a major downside: The stack can be rather limited.
Especially when the input of a algorithm is externally controlled, implementing it as a recursive algorithm is asking for stack overflows.
Expand Down

0 comments on commit e72477d

Please sign in to comment.