From 6555659e82d4300b3fde33ca5416e78db1fb533c Mon Sep 17 00:00:00 2001 From: Brody Berg Date: Wed, 4 Aug 2010 22:53:45 -0700 Subject: [PATCH 1/2] Fix typo --- src/grammar.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/grammar.coffee b/src/grammar.coffee index 97edb7d8..fd17288c 100644 --- a/src/grammar.coffee +++ b/src/grammar.coffee @@ -102,7 +102,7 @@ grammar = o "Comment" ] - # A an indented block of expressions. Note that the [Rewriter](rewriter.html) + # An indented block of expressions. Note that the [Rewriter](rewriter.html) # will convert some postfix forms into blocks for us, by adjusting the # token stream. Block: [ From 133aa7be4a52f7f6041473f7fac77ca428e81ce2 Mon Sep 17 00:00:00 2001 From: Brody Berg Date: Wed, 4 Aug 2010 23:23:46 -0700 Subject: [PATCH 2/2] Fix typo --- src/lexer.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lexer.coffee b/src/lexer.coffee index 57c83b10..8dae59cc 100644 --- a/src/lexer.coffee +++ b/src/lexer.coffee @@ -136,7 +136,7 @@ exports.Lexer = class Lexer @i += match[1].length true - # Matches and conumes comments. + # Matches and consumes comments. commentToken: -> return false unless match = @chunk.match(COMMENT) @line += count match[1], "\n"