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:30:29 +02:00
parent f45f1e2ec5
commit c8169ea274
14 changed files with 20 additions and 20 deletions

View File

@@ -1772,7 +1772,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];