Update README.md (#15)

Minor typo/corrections I found while reading this chapter. Thanks for the book! It's been a nice, light read :-)
This commit is contained in:
rtobar 2023-01-17 05:30:45 +08:00 committed by GitHub
parent fa8bb910e3
commit 93389b13dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -210,7 +210,7 @@ Our jump table remains the same.
## More strategies for implementing `switch`
As indicated above, an optimizer has at least three tools available to
it to implement complex `switch` statements. And, it an combine these
it to implement complex `switch` statements. And, it can combine these
tools.
For example, suppose your cases boil down to two ranges of fairly
@ -240,5 +240,5 @@ common cases at the top of the `if / else` sequence.
**This is known as making the common case fast.**
Making the common case fast is one of the Great Ideas in Computer
Science. One, you would do well to remember no matter than language
Science. One, you would do well to remember no matter what language
you're working with.