diff --git a/content/accessibility/descriptive-buttons.mdx b/content/accessibility/descriptive-buttons.mdx
index a374f37bf2e9fc5ebafefa98c7567034bceb3f10..895b3bc7217130cbc4e9d1874a2b612f15bc1476 100644
--- a/content/accessibility/descriptive-buttons.mdx
+++ b/content/accessibility/descriptive-buttons.mdx
@@ -51,7 +51,7 @@ When reviewing buttons on a page, ensure the following are true:
   </Do>
   <Dont>
     <Code className="language-html">
-      {`<button type="button">OK</button>`}
+      {`<button aria-label="button" type="button">OK</button>`}
     </Code>
     <Caption>The button has a redundant and unnecessary `aria-label` attribute.</Caption>
  </Dont>