diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index f1f1955..f576412 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -10374,7 +10374,7 @@ Reuse of a member name as a local variable can also be a problem: if (x) { int m = 9; // ... - m = 99; // assign to member + m = 99; // assign to local variable // ... } }