1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Style: Apply fixes from codespell

This commit is contained in:
Rémi Verschelde
2025-04-25 15:34:47 +02:00
parent d4d66cb7b2
commit 7d9ae94b20
13 changed files with 19 additions and 19 deletions

View File

@@ -1749,7 +1749,7 @@ void GDScriptByteCodeGenerator::end_block() {
void GDScriptByteCodeGenerator::clean_temporaries() {
List<int>::Element *E = temporaries_pending_clear.front();
while (E) {
// The temporary may have been re-used as something else than an object
// The temporary may have been reused as something else than an object
// since it was added to the list. In that case, there's no need to clear it.
int slot_idx = E->get();
const StackSlot &slot = temporaries[slot_idx];