Skip to content

Commit a48bd5e

Browse files
Update docs/code-quality/c6201.md
Co-authored-by: Michael Squires <[email protected]>
1 parent 1510a1f commit a48bd5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/code-quality/c6201.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Code analysis name: INDEX_EXCEEDS_MAX
2121

2222
## Example
2323

24-
The following code generates this warning. This issue stems from the **`for`** loop exceedeeding the index range, attempting to access the 14th index when the 13th is the last:
24+
The following code generates this warning. This issue stems from the **`for`** loop exceeding the index range, attempting to access the index 14 (the 15th element) when the index 13 (the 14th element) is the last:
2525

2626
```cpp
2727
int buff[14]; // array of 0..13 elements

0 commit comments

Comments
 (0)