diff options
author | Atin <61903527+atin@users.noreply.github.com> | 2021-05-19 10:42:09 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-19 13:12:09 +0800 |
commit | d6987ee05be8b5da279e530cfd65512cb903c72b (patch) | |
tree | 92da4f00413abb945477a2c4e9df509a9c5b161d /public/plugins/codemirror-5.17.0 | |
parent | 509a392272a2ba2bde9d64bf5a55a58d0eadccc4 (diff) |
chore: fix typos in code comments (#6556)
Diffstat (limited to 'public/plugins/codemirror-5.17.0')
-rw-r--r-- | public/plugins/codemirror-5.17.0/mode/factor/factor.js | 2 | ||||
-rw-r--r-- | public/plugins/codemirror-5.17.0/mode/gas/gas.js | 2 | ||||
-rw-r--r-- | public/plugins/codemirror-5.17.0/mode/yaml/yaml.js | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/public/plugins/codemirror-5.17.0/mode/factor/factor.js b/public/plugins/codemirror-5.17.0/mode/factor/factor.js index 86d7adf6..0cf5ab96 100644 --- a/public/plugins/codemirror-5.17.0/mode/factor/factor.js +++ b/public/plugins/codemirror-5.17.0/mode/factor/factor.js @@ -16,7 +16,7 @@ "use strict"; CodeMirror.defineSimpleMode("factor", { - // The start state contains the rules that are intially used + // The start state contains the rules that are initially used start: [ // comments {regex: /#?!.*/, token: "comment"}, diff --git a/public/plugins/codemirror-5.17.0/mode/gas/gas.js b/public/plugins/codemirror-5.17.0/mode/gas/gas.js index 0c74bedc..2e9d08a0 100644 --- a/public/plugins/codemirror-5.17.0/mode/gas/gas.js +++ b/public/plugins/codemirror-5.17.0/mode/gas/gas.js @@ -21,7 +21,7 @@ CodeMirror.defineMode("gas", function(_config, parserConfig) { // The symbol used to start a line comment changes based on the target // architecture. - // If no architecture is pased in "parserConfig" then only multiline + // If no architecture is passed in "parserConfig" then only multiline // comments will have syntax support. var lineCommentStartSymbol = ""; diff --git a/public/plugins/codemirror-5.17.0/mode/yaml/yaml.js b/public/plugins/codemirror-5.17.0/mode/yaml/yaml.js index b7015e59..6551a7bd 100644 --- a/public/plugins/codemirror-5.17.0/mode/yaml/yaml.js +++ b/public/plugins/codemirror-5.17.0/mode/yaml/yaml.js @@ -57,12 +57,12 @@ CodeMirror.defineMode("yaml", function() { return 'meta'; } - /* list seperator */ + /* list separator */ if (state.inlineList > 0 && !esc && ch == ',') { stream.next(); return 'meta'; } - /* pairs seperator */ + /* pairs separator */ if (state.inlinePairs > 0 && !esc && ch == ',') { state.keyCol = 0; state.pair = false; |