Commit be271d3b for codemirror.net

commit be271d3b04487edeece41c27f7a2e2ac98faccc9
Author: Hicham Omari <hichamomari@hotmail.com>
Date:   Tue Sep 16 16:09:16 2025 +0200

    [clike mode] Correct a typo

diff --git a/mode/clike/clike.js b/mode/clike/clike.js
index f783dfc8..30c8f6e3 100644
--- a/mode/clike/clike.js
+++ b/mode/clike/clike.js
@@ -677,7 +677,7 @@ CodeMirror.defineMode("clike", function(config, parserConfig) {
       "ByteArray Char CharArray DeprecationLevel DoubleArray Enum FloatArray Function Int IntArray Lazy " +
       "LazyThreadSafetyMode LongArray Nothing ShortArray Unit"
     ),
-    intendSwitch: false,
+    indentSwitch: false,
     indentStatements: false,
     multiLineStrings: true,
     number: /^(?:0x[a-f\d_]+|0b[01_]+|(?:[\d_]+(\.\d+)?|\.\d+)(?:e[-+]?[\d_]+)?)(ul?|l|f)?/i,