Skip to content

Commit b4b4dd7

Browse files
authored
Docs: Fix loop counter in for-loop example
PR #23792.
1 parent b3ddcac commit b4b4dd7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CODING_GUIDELINES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ if (condition)
9292
// code
9393
}
9494
95-
for (int a = 0; a < b; ++b)
95+
for (int a = 0; a < b; ++a)
9696
{
9797
// code
9898
}

0 commit comments

Comments
 (0)