From 9b0fdf51b4db0ecad48e98ebaa85fc05e6753143 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Fri, 1 Sep 2023 19:03:40 -0400 Subject: [PATCH] spelling: separator Signed-off-by: Josh Soref --- _static/yaml.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_static/yaml.js b/_static/yaml.js index 3e2a24c..c137d2c 100644 --- a/_static/yaml.js +++ b/_static/yaml.js @@ -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; -- 2.38.5