From a367666bc49293fdf45b5a626f1f84c6a86f90d7 Mon Sep 17 00:00:00 2001 From: Adam Wathan Date: Tue, 31 Oct 2017 22:00:02 -0400 Subject: [PATCH] Tweak whitespace wording --- docs/source/docs/whitespace-and-wrapping.blade.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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.