diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 1d1e427..8e9f645 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -9985,7 +9985,7 @@ The termination condition is at the end (where it can be overlooked) and the con int x; do { cin >> x; - x + // ... } while (x < 0); ##### Enforcement