diff options
author | Gio <lotuspar0@gmail.com> | 2023-09-19 04:55:15 +0800 |
---|---|---|
committer | Gio <lotuspar0@gmail.com> | 2023-09-19 21:38:52 +0800 |
commit | b6f1dbb3400ae2a93cad3fb352155b07b4346f5d (patch) | |
tree | 7caf4138e983924c09acdf7221ee9b1ad8c959f0 | |
parent | e3e2528ba7f6e85ac167d687dd6312b35f558591 (diff) | |
download | redot-engine-b6f1dbb3400ae2a93cad3fb352155b07b4346f5d.tar.gz |
Rewrite a bit of comment in tokenizer code
gdscript_tokenizer.cpp: `change` -> `changes`
-rw-r--r-- | modules/gdscript/gdscript_tokenizer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_tokenizer.cpp b/modules/gdscript/gdscript_tokenizer.cpp index 42b983ef45..485d70c55f 100644 --- a/modules/gdscript/gdscript_tokenizer.cpp +++ b/modules/gdscript/gdscript_tokenizer.cpp @@ -1216,7 +1216,7 @@ void GDScriptTokenizer::check_indent() { if (line_continuation || multiline_mode) { // We cleared up all the whitespace at the beginning of the line. - // But if this is a continuation or multiline mode and we don't want any indentation change. + // If this is a line continuation or we're in multiline mode then we don't want any indentation changes. return; } |