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
No known key found for this signature in database
GPG key ID: C3336907360768E1
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];