diff --git a/site/docs/4.3/utilities/display.md b/site/docs/4.3/utilities/display.md
index 8dafce2d8920eae0df024ad349f1578a2a5da3a3..3b53460ee0ec601e122a9a7f6d015b423e02e2bf 100644
--- a/site/docs/4.3/utilities/display.md
+++ b/site/docs/4.3/utilities/display.md
@@ -73,7 +73,7 @@ To show an element only on a given interval of screen sizes you can combine one
 | Visible only on xl | `.d-none .d-xl-block` |
 
 {% capture example %}
-<div class="d-lg-none">hide on screens wider than lg</div>
+<div class="d-lg-none">hide on lg and wider screens</div>
 <div class="d-none d-lg-block">hide on screens smaller than lg</div>
 {% endcapture %}
 {% include example.html content=example %}