Update gdscript_advanced.rst

This commit is contained in:
saolof
2021-04-21 19:55:50 -04:00
committed by GitHub
parent 15bcf71083
commit 5cf04ee69c

View File

@@ -338,7 +338,7 @@ Iterating in C-derived languages can be quite complex:
std::cout << *it << std::endl;
}
This is usually greatly simplified in modern languages using for loops over iterables:
This is usually greatly simplified in modern languages using for-in loops over iterables:
::