summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Ball <cycomachead@gmail.com>2014-07-17 12:08:30 -0700
committerMichael Ball <cycomachead@gmail.com>2014-07-17 12:08:30 -0700
commit80d1e25bee175a06c9379aeff020054b3acb752c (patch)
tree068d9f552589d95663ce05a2e0d618829a4f715b
parent440cd340a5231e2d3498006f46004058b05af1f8 (diff)
downloadsnap-80d1e25bee175a06c9379aeff020054b3acb752c.tar.gz
snap-80d1e25bee175a06c9379aeff020054b3acb752c.zip
Lint: fix missing semicolon
-rw-r--r--threads.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/threads.js b/threads.js
index 3b7074e..24d4196 100644
--- a/threads.js
+++ b/threads.js
@@ -2150,7 +2150,7 @@ Process.prototype.reportTextSplit = function (string, delimiter) {
return new List(str.trim().split(/[\t\r\n ]+/));
case 'character':
del = '';
- break
+ break;
default:
del = (delimiter || '').toString();
}