Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJo Michael <me@mynetx.net>2012-04-07 22:23:22 +0400
committerJo Michael <me@mynetx.net>2012-04-07 22:23:22 +0400
commit6ba62e1b2da72a2c8446c75639ac8b76b1ae3f99 (patch)
tree92537d3735840219d1fbf9fba25c9605608a1b84 /js/codemirror
parent952ca9efca944e65edc748705175e9331ca07a97 (diff)
Replaced "seperator" with "separator"
Diffstat (limited to 'js/codemirror')
-rw-r--r--js/codemirror/mode/mysql/mysql.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/codemirror/mode/mysql/mysql.js b/js/codemirror/mode/mysql/mysql.js
index 94b89a5e27..ca07c26f14 100644
--- a/js/codemirror/mode/mysql/mysql.js
+++ b/js/codemirror/mode/mysql/mysql.js
@@ -25,7 +25,7 @@ CodeMirror.defineMode("mysql", function(config, parserConfig) {
// start of string?
if (ch == '"' || ch == "'" || ch == '`')
return chain(stream, state, tokenString(ch));
- // is it one of the special signs []{}().,;? Seperator?
+ // is it one of the special signs []{}().,;? separator?
else if (/[\[\]{}\(\),;\.]/.test(ch))
return ret(ch, "separator");
// start of a number value?