~comcloudway/builds.sr.ht

9b0fdf51b4db0ecad48e98ebaa85fc05e6753143 — Josh Soref 1 year, 1 month ago 2d69bb7
spelling: separator

Signed-off-by: Josh Soref <jsoref@gmail.com>
1 files changed, 2 insertions(+), 2 deletions(-)

M _static/yaml.js
M _static/yaml.js => _static/yaml.js +2 -2
@@ 58,12 58,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;