From 8889cf97d08a744c4f25bb3383626a152dae0f30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Chris=20Ram=C3=B3n?= Date: Fri, 14 Aug 2015 00:28:00 -0500 Subject: [PATCH] typo --- src/language/lexer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/language/lexer.js b/src/language/lexer.js index 4e323915cc..6a26a2c231 100644 --- a/src/language/lexer.js +++ b/src/language/lexer.js @@ -130,7 +130,7 @@ function makeToken( * * This skips over whitespace and comments until it finds the next lexable * token, then lexes punctuators immediately or calls the appropriate helper - * fucntion for more complicated tokens. + * function for more complicated tokens. */ function readToken(source: Source, fromPosition: number): Token { var body = source.body;