From cc19b6743b808f83ee0dba5ed359e887a4ca23df Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Mon, 28 Dec 2020 15:51:53 +0900 Subject: [PATCH] fix(client): comment typo fixed (#40535) occured -> occurred --- client/src/templates/Challenges/classic/Editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/templates/Challenges/classic/Editor.js b/client/src/templates/Challenges/classic/Editor.js index 954ae710f2..60fca21d6a 100644 --- a/client/src/templates/Challenges/classic/Editor.js +++ b/client/src/templates/Challenges/classic/Editor.js @@ -792,7 +792,7 @@ class Editor extends Component { const preventOverlap = id => { // Even though the decoration covers the whole line, it has a // startColumn that moves. toStartOfLine ensures that the - // comparison detects if any change has occured on that line + // comparison detects if any change has occurred on that line // NOTE: any change in the decoration has already happened by this point // so this covers the *new* decoration range. const coveringRange = toStartOfLine(model.getDecorationRange(id));