Fix typos in previous commits
diff --git a/README.md b/README.md
index d0d81fc..2c6cc62 100644
--- a/README.md
+++ b/README.md
@@ -127,7 +127,7 @@
cmake -LH
-Note that, with CMake, you can't adjust the compiler of compiler after the
+Note that, with CMake, you can't adjust the compiler or its flags after the
initial invocation of cmake. This means that `CC=your_cc make` and `make
CC=your_cc` will *not* work (similarly with `CFLAGS` and other variables).
These variables need to be adjusted when invoking cmake for the first time,
@@ -151,7 +151,7 @@
find . -iname '*cmake*' -not -name CMakeLists.txt -exec rm -rf {} +
-You can not make the desired change:
+You can now make the desired change:
CC=your_cc cmake .
make