diff --git a/docs/toggle.html b/docs/toggle.html
index c390ed8..f819a50 100644
--- a/docs/toggle.html
+++ b/docs/toggle.html
@@ -229,7 +229,7 @@ <h3 id="local-toggle">Local toggle</h3>
 <p>Create a target and related button(s) in HTML</p>
 <pre><code>&lt;div class=&quot;parent&quot;&gt;
     &lt;button type=&quot;button&quot; class=&quot;js-toggle__btn&quot;&gt;&lt;/button&gt;
-    &lt;div id=&quot;child&quot; class=&quot;js-toggle__local&quot; data-toggle=&quot;js-toggle__btn&quot;&gt;&lt;/div&gt;
+    &lt;div id=&quot;child&quot; class=&quot;js-toggle__local child&quot; data-toggle=&quot;js-toggle__btn&quot;&gt;&lt;/div&gt;
 &lt;/div&gt;
 </code></pre>
 <p>Example MVP CSS</p>
diff --git a/packages/toggle/README.md b/packages/toggle/README.md
index 43f1eaf..4aaa196 100644
--- a/packages/toggle/README.md
+++ b/packages/toggle/README.md
@@ -53,7 +53,7 @@ Create a target and related button(s) in HTML
 ```
 <div class="parent">
     <button type="button" class="js-toggle__btn"></button>
-    <div id="child" class="js-toggle__local" data-toggle="js-toggle__btn"></div>
+    <div id="child" class="js-toggle__local child" data-toggle="js-toggle__btn"></div>
 </div>
 ```