diff options
Diffstat (limited to 'src/parseTools.js')
-rw-r--r-- | src/parseTools.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parseTools.js b/src/parseTools.js index e9ca3e34..12b531ea 100644 --- a/src/parseTools.js +++ b/src/parseTools.js @@ -2,7 +2,7 @@ // specific to Emscripten (and hence not in utility.js). // Simple #if/else/endif preprocessing for a file. Checks if the -// ident checked is true in our global. Also replaces some constants +// ident checked is true in our global. Also replaces some constants. function preprocess(text, constants) { for (constant in constants) { text = text.replace(eval('/' + constant + '/g'), constants[constant]); |