Example:
while (true) { if (i == 23) break; i++; }
After the quick fix is applied:
while (i != 23) { i++; }