Merge pull request #4289 from GeoffreyBooth/fix-typos

Fix misspellings
This commit is contained in:
Simon Lydell 2016-07-25 09:42:19 +02:00 committed by GitHub
commit 133fadd36a
3 changed files with 6 additions and 6 deletions

View File

@ -246,7 +246,7 @@ parser.yy = require './nodes'
# Override Jison's default error handling function.
parser.yy.parseError = (message, {token}) ->
# Disregard Jison's message, it contains redundant line numer information.
# Disregard Jison's message, it contains redundant line number information.
# Disregard the token, we take its value directly from the lexer in case
# the error is caused by a generated token which might refer to its origin.
{errorToken, tokens} = parser

View File

@ -1541,7 +1541,7 @@ exports.Code = class Code extends Base
#### Param
# A parameter in a function definition. Beyond a typical Javascript parameter,
# A parameter in a function definition. Beyond a typical JavaScript parameter,
# these parameters can also attach themselves to the context of the function,
# as well as be a splat, gathering up a group of parameters into an array.
exports.Param = class Param extends Base

View File

@ -1,5 +1,5 @@
# Error Formating
# ---------------
# Error Formatting
# ----------------
# Ensure that errors of different kinds (lexer, parser and compiler) are shown
# in a consistent way.
@ -10,7 +10,7 @@ assertErrorFormat = (code, expectedErrorFormat) ->
eq expectedErrorFormat, "#{err}"
yes
test "lexer errors formating", ->
test "lexer errors formatting", ->
assertErrorFormat '''
normalObject = {}
insideOutObject = }{
@ -21,7 +21,7 @@ test "lexer errors formating", ->
^
'''
test "parser error formating", ->
test "parser error formatting", ->
assertErrorFormat '''
foo in bar or in baz
''',