diff --git a/README.md b/README.md
index e8aecbc..3bb3244 100644
--- a/README.md
+++ b/README.md
@@ -9,7 +9,7 @@ What's different:
* Flask-SQLAlchemy columns are used (e.g. `db.Integer`).
* Metadata is only implicit in tables.
* Defaults to generating backrefs in relationships. `--nobackref` still included as option in case backrefs are not wanted.
-* Naming of backrefs is class name in snake_case (as opposed to CamelCase) and is pluralized if it's Many-to-One or Many-to-Many using inflect.
+* Naming of backrefs is class name in snake_case (as opposed to CamelCase) and is pluralized if it is Many-to-One or Many-to-Many using inflect.
* Generate explicit primary joins. I deal with pretty complicated tables that need explicit primary joins.
-* If column has a server_default set it to `FetchValue()` instead of trying to determine what that value is. Original code did not set the right server defaults in my set up.
+* If a column has a default value, set it to `FetchValue()` instead of trying to determine what that value is. Original code did not set the right server defaults in my setup.
* `--ignore-cols` ignores special columns (e.g. id, inserted, updated) when generating association tables. Original code requires all columns to be foreign keys in order to generate association table. Example: `--ignore-cols id,inserted,updated`.