diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index dc48c4e..adacc6e 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -10712,7 +10712,7 @@ Pointers should only refer to single objects, and pointer arithmetic is fragile a[4] = 1; // OK - a[count – 1] = 2; // OK + a[count - 1] = 2; // OK use(a.data(), 3); // OK }