diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md
index 8cd941b..e92abe6 100644
--- a/CppCoreGuidelines.md
+++ b/CppCoreGuidelines.md
@@ -7020,7 +7020,7 @@ If at all possible, reduce the conditions to a simple set of alternatives (e.g.,
case file: owned=true; return *new ifstream{argv[2]};
}();
-**Enforcement:** Hard. At best a heuristic. Look for an unitialized variable followed by a loop assigning to it.
+**Enforcement**: Hard. At best a heuristic. Look for an unitialized variable followed by a loop assigning to it.
@@ -11517,7 +11517,7 @@ Comments are not updated as consistently as code.
if (i==j)
return i;
-Enforcement: Use a tool.
+**Enforcement**: Use a tool.