Fix typos in README
diff --git a/README.md b/README.md
index bf593d0..2526170 100644
--- a/README.md
+++ b/README.md
@@ -136,7 +136,7 @@
 
 Good tests are isolated tests, so it is important to reset the fakes for each
 unit test.  All the fakes have a reset function to reset their arguments and
-call counts.  It is good prectice is to call the reset function for all the
+call counts.  It is good practice is to call the reset function for all the
 fakes in the setup function of your test suite.
 
     void setup()
@@ -478,7 +478,7 @@
 
 ## Find out more...
 
-Look under the examlples directory for full length examples in both C and C++.
+Look under the examples directory for full length examples in both C and C++.
 There is also a test suite for the framework under the test directory.
 
 -------------------------