diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-09-20 13:09:44 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-09-20 13:09:44 +0200 |
commit | 888d3252ba5ea88c5e5bc3f6721bf10d8fe9439e (patch) | |
tree | aa58f0f775796cd815e8c184411dd5c9cb4bd6ef | |
parent | 2c125bf9c0fa870c5af9a753a6b85295f01f0728 (diff) | |
parent | b6f1dbb3400ae2a93cad3fb352155b07b4346f5d (diff) | |
download | redot-engine-888d3252ba5ea88c5e5bc3f6721bf10d8fe9439e.tar.gz |
Merge pull request #81881 from lotuspar/patch-1
Rewrite a small comment in GDScript tokenizer code
-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 d5c02eeae1..07f2b8b406 100644 --- a/modules/gdscript/gdscript_tokenizer.cpp +++ b/modules/gdscript/gdscript_tokenizer.cpp @@ -1245,7 +1245,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; } |