diff --git a/docs/source/docs/whitespace-and-wrapping.blade.md b/docs/source/docs/whitespace-and-wrapping.blade.md
index 9771a6b9c..f6ffa8c35 100644
--- a/docs/source/docs/whitespace-and-wrapping.blade.md
+++ b/docs/source/docs/whitespace-and-wrapping.blade.md
@@ -61,12 +61,12 @@ title: "Whitespace & Wrapping"
| .break-words |
word-wrap: break-word; |
- Allow unbreakable words to be broken within an element. |
+ Add line breaks mid-word if needed. |
| .break-normal |
word-wrap: normal; |
- Break words only at allowed break points within an element. |
+ Only add line breaks at normal word break points. |
| .truncate |
@@ -75,7 +75,7 @@ title: "Whitespace & Wrapping"
text-overflow: ellipsis;
white-space: nowrap;
- Cause overflowing text within an element get to truncated with an ellipsis (…) if required. |
+ Truncate overflowing text with an ellipsis (…) if needed. |