From 936a335d1f294db62583745cca413c574085c397 Mon Sep 17 00:00:00 2001 From: Alex Li Date: Mon, 18 Apr 2022 15:53:38 +0800 Subject: [PATCH 1/3] src/get-started/flutter-for/web-devs.md --- src/get-started/flutter-for/web-devs.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/get-started/flutter-for/web-devs.md b/src/get-started/flutter-for/web-devs.md index 28804f6979..415e3a5402 100644 --- a/src/get-started/flutter-for/web-devs.md +++ b/src/get-started/flutter-for/web-devs.md @@ -863,10 +863,10 @@ with some formatting characteristics. To display text that uses multiple styles (in this example, a single word with emphasis), use a [`RichText`][]widget instead. -Its `text` property can specify one or more [`TextSpan`][] widgets +Its `text` property can specify one or more [`TextSpan`][] that can be individually styled. -In the following example, "Lorem" is in a `TextSpan` widget +In the following example, "Lorem" is in a `TextSpan` with the default (inherited) text styling, and "ipsum" is in a separate `TextSpan` with custom styling. From ccb50871c4ce630461405410eff389fbb25ed14b Mon Sep 17 00:00:00 2001 From: Alex Li Date: Mon, 18 Apr 2022 16:19:11 +0800 Subject: [PATCH 2/3] Add the trailing `s` suggested by @domesticmouse --- src/get-started/flutter-for/web-devs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/get-started/flutter-for/web-devs.md b/src/get-started/flutter-for/web-devs.md index 415e3a5402..e6943931fb 100644 --- a/src/get-started/flutter-for/web-devs.md +++ b/src/get-started/flutter-for/web-devs.md @@ -863,7 +863,7 @@ with some formatting characteristics. To display text that uses multiple styles (in this example, a single word with emphasis), use a [`RichText`][]widget instead. -Its `text` property can specify one or more [`TextSpan`][] +Its `text` property can specify one or more [`TextSpan`][]s that can be individually styled. In the following example, "Lorem" is in a `TextSpan` From 1dfd40f09278b61754d4e78fe4d6b2d4e82fbe98 Mon Sep 17 00:00:00 2001 From: Alex Li Date: Tue, 19 Apr 2022 00:28:30 +0800 Subject: [PATCH 3/3] Apply the style suggestion from @parlough --- src/get-started/flutter-for/web-devs.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/get-started/flutter-for/web-devs.md b/src/get-started/flutter-for/web-devs.md index e6943931fb..19fe3da8d6 100644 --- a/src/get-started/flutter-for/web-devs.md +++ b/src/get-started/flutter-for/web-devs.md @@ -863,8 +863,8 @@ with some formatting characteristics. To display text that uses multiple styles (in this example, a single word with emphasis), use a [`RichText`][]widget instead. -Its `text` property can specify one or more [`TextSpan`][]s -that can be individually styled. +Its `text` property can specify one or more +[`TextSpan`][] objects that can be individually styled. In the following example, "Lorem" is in a `TextSpan` with the default (inherited) text styling,