possible causes
- fumbling nested for loop variables
- I tend to get this when I have a
for (int i = 0; i < 5; i++) {
and then I copy it to the next line and only change some of thei
's toj
's
for (int i = 0; i < 5; i++) {
and then I copy it to the next line and only change some of the i
's to j
's