summaryrefslogtreecommitdiff
path: root/public/vendor/codemirror/mode/verilog
diff options
context:
space:
mode:
Diffstat (limited to 'public/vendor/codemirror/mode/verilog')
-rw-r--r--public/vendor/codemirror/mode/verilog/index.html2
-rw-r--r--public/vendor/codemirror/mode/verilog/test.js2
-rw-r--r--public/vendor/codemirror/mode/verilog/verilog.js2
3 files changed, 3 insertions, 3 deletions
diff --git a/public/vendor/codemirror/mode/verilog/index.html b/public/vendor/codemirror/mode/verilog/index.html
index 96b3d647..9c52722a 100644
--- a/public/vendor/codemirror/mode/verilog/index.html
+++ b/public/vendor/codemirror/mode/verilog/index.html
@@ -112,7 +112,7 @@ endclass
Syntax highlighting and indentation for the Verilog and SystemVerilog languages (IEEE 1800).
<h2>Configuration options:</h2>
<ul>
- <li><strong>noIndentKeywords</strong> - List of keywords which should not cause identation to increase. E.g. ["package", "module"]. Default: None</li>
+ <li><strong>noIndentKeywords</strong> - List of keywords which should not cause indentation to increase. E.g. ["package", "module"]. Default: None</li>
</ul>
</p>
diff --git a/public/vendor/codemirror/mode/verilog/test.js b/public/vendor/codemirror/mode/verilog/test.js
index 9c8c0949..8334fab0 100644
--- a/public/vendor/codemirror/mode/verilog/test.js
+++ b/public/vendor/codemirror/mode/verilog/test.js
@@ -263,7 +263,7 @@
""
);
- MT("covergoup_with_function_indents_properly",
+ MT("covergroup_with_function_indents_properly",
"[keyword covergroup] [variable cg] [keyword with] [keyword function] [variable sample][bracket (][keyword bit] [variable b][bracket )];",
" [variable c] : [keyword coverpoint] [variable c];",
"[keyword endgroup]: [variable cg]",
diff --git a/public/vendor/codemirror/mode/verilog/verilog.js b/public/vendor/codemirror/mode/verilog/verilog.js
index 9d2a4cd5..7513dced 100644
--- a/public/vendor/codemirror/mode/verilog/verilog.js
+++ b/public/vendor/codemirror/mode/verilog/verilog.js
@@ -250,7 +250,7 @@ CodeMirror.defineMode("verilog", function(config, parserConfig) {
if (text == contextClosing) {
return true;
} else {
- // contextClosing may be mulitple keywords separated by ;
+ // contextClosing may be multiple keywords separated by ;
var closingKeywords = contextClosing.split(";");
for (var i in closingKeywords) {
if (text == closingKeywords[i]) {