Touch up instructions.
diff --git a/README.md b/README.md
index 9a40db7..cfb263c 100644
--- a/README.md
+++ b/README.md
@@ -56,8 +56,8 @@
 traditional SQL CREATE TABLE and SELECT statements work. The data types

 that are supported include INTEGER, FLOAT, DOUBLE, VARCHAR, CHAR, DATE,

 and DATETIME. Quickstep also does not have support for NULLS or keys (yet).

-Let create two tables by typing into the Quickstep shell (which you opened

-in the step above.

+Let us create two tables by typing into the Quickstep shell (which you opened

+in the step above), the following SQL command:

 

 ```

 CREATE TABLE Weather (cid INTEGER, recordDate DATE, highTemperature FLOAT, lowTemperature FLOAT);

@@ -78,7 +78,7 @@
     INSERT INTO Weather VALUES (2, '2015-11-1', 60, 50);

     ```

 

-11. Now we can issue SQL queries such as:

+11. We can now can issue SQL queries such as:

   a. Find all weather records for California:

   ```

   SELECT * FROM WEATHER W, City C WHERE C.cid = W.cid AND C.state = 'CA';