fix typo tokens to token and remove redundant white space
authorOmar Rayward <orayward@yahoo.com>
Wed, 27 Jan 2016 23:45:50 +0000 (15:45 -0800)
committerOmar Rayward <orayward@yahoo.com>
Sun, 31 Jan 2016 01:53:42 +0000 (17:53 -0800)
process/guide.md

index fe45f45..c79357a 100644 (file)
@@ -257,7 +257,7 @@ expression support.
 * If the target language has objects types (OOP), then the next step
   is to create a simple stateful Reader object in `reader.qx`. This
   object will store the tokens and a position. The Reader object will
-  have two methods: `next` and `peek`. `next` returns the tokens at
+  have two methods: `next` and `peek`. `next` returns the token at
   the current position and increments the position. `peek` just
   returns the token at the current position.