Minor revisions for grammar and punctuation.

pull/44/head
Daniel Norris 8 years ago
parent a44d3ff1e8
commit d94ebb8dd8

@ -556,7 +556,7 @@ function parser(tokens) {
// (add 2 (subtract 4 2)) // (add 2 (subtract 4 2))
// //
// You'll also notice that in our tokens array we have multiple closing // You'll also notice that in our tokens array we have multiple closing
// parenthesis. // parentheses.
// //
// [ // [
// { type: 'paren', value: '(' }, // { type: 'paren', value: '(' },
@ -769,9 +769,10 @@ function transformer(ast) {
}; };
// Next I'm going to cheat a little and create a bit of a hack. We're going to // Next I'm going to cheat a little and create a bit of a hack. We're going to
// use a property named `context` on our parent nodes that we're going to push // use a property named `context` on our parent nodes that we're going to use
// nodes to their parent's `context`. Normally you would have a better // to push nodes to their parents' `context`'s. Normally you would have a
// abstraction than this, but for our purposes this keeps things simple. // better abstraction than this, but for our purposes this keeps things
// simple.
// //
// Just take note that the context is a reference *from* the old ast *to* the // Just take note that the context is a reference *from* the old ast *to* the
// new ast. // new ast.
@ -841,7 +842,7 @@ function transformer(ast) {
*/ */
/** /**
* Now let's move onto our last phase: The Code Generator. * Now let's move on to our last phase: The Code Generator.
* *
* Our code generator is going to recursively call itself to print each node in * Our code generator is going to recursively call itself to print each node in
* the tree into one giant string. * the tree into one giant string.

Loading…
Cancel
Save