From 5738c9f8f958864ab6db67d83f3f14130e09c2fe Mon Sep 17 00:00:00 2001 From: Joel Byrnes Date: Wed, 27 May 2015 12:44:37 -0400 Subject: [PATCH 1/2] Fixed a typo --- chapters/design_patterns/interpreter.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapters/design_patterns/interpreter.md b/chapters/design_patterns/interpreter.md index 0f6ba9d..654c324 100644 --- a/chapters/design_patterns/interpreter.md +++ b/chapters/design_patterns/interpreter.md @@ -140,4 +140,4 @@ send toasted ham turkey sandwich to 'Rachel' # => "Rachel requested a toasted, w send toasted turkey ham swiss sandwich to 'Matt' # => "Matt requested a toasted, white bread sandwich with swiss, ham and turkey" {% endhighlight %} -This example allows for layers of functions by how it returns the modified object so that outer functions can modify it in turn. By borrowing a very and the particle _to_, the example lends natural grammar to the construction and ends up reading like an actual sentence when used correctly. This way, both your CoffeeScript skills and your existing language skills can help catch code problems. +This example allows for layers of functions by how it returns the modified object so that outer functions can modify it in turn. By borrowing a verb and the particle _to_, the example lends natural grammar to the construction and ends up reading like an actual sentence when used correctly. This way, both your CoffeeScript skills and your existing language skills can help catch code problems. From 3e08e7c20af41f8e9a94661be2f86d32bd459d58 Mon Sep 17 00:00:00 2001 From: Joel Byrnes Date: Wed, 27 May 2015 15:52:34 -0400 Subject: [PATCH 2/2] Change "the particle _to_" to read: "the preposition _to" --- chapters/design_patterns/interpreter.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapters/design_patterns/interpreter.md b/chapters/design_patterns/interpreter.md index 654c324..e3fa133 100644 --- a/chapters/design_patterns/interpreter.md +++ b/chapters/design_patterns/interpreter.md @@ -140,4 +140,4 @@ send toasted ham turkey sandwich to 'Rachel' # => "Rachel requested a toasted, w send toasted turkey ham swiss sandwich to 'Matt' # => "Matt requested a toasted, white bread sandwich with swiss, ham and turkey" {% endhighlight %} -This example allows for layers of functions by how it returns the modified object so that outer functions can modify it in turn. By borrowing a verb and the particle _to_, the example lends natural grammar to the construction and ends up reading like an actual sentence when used correctly. This way, both your CoffeeScript skills and your existing language skills can help catch code problems. +This example allows for layers of functions by how it returns the modified object so that outer functions can modify it in turn. By borrowing a verb and the preposition _to_, the example lends natural grammar to the construction and ends up reading like an actual sentence when used correctly. This way, both your CoffeeScript skills and your existing language skills can help catch code problems.