From 084e25298d07e554d592772befa361d10ffbca53 Mon Sep 17 00:00:00 2001 From: Goddchen Date: Wed, 6 Jul 2022 23:42:15 +0200 Subject: [PATCH] Fix typo in painting.TextStyle.merge docs (#106511) --- packages/flutter/lib/src/painting/text_style.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/flutter/lib/src/painting/text_style.dart b/packages/flutter/lib/src/painting/text_style.dart index 9a7468ff86d..d41b5d6f69a 100644 --- a/packages/flutter/lib/src/painting/text_style.dart +++ b/packages/flutter/lib/src/painting/text_style.dart @@ -1010,7 +1010,7 @@ class TextStyle with Diagnosticable { /// One of [color] or [foreground] must be null, and if this or `other` has /// [foreground] specified it will be given preference over any color parameter. /// - /// Similarly, One of [backgroundColor] or [background] must be null, and if + /// Similarly, one of [backgroundColor] or [background] must be null, and if /// this or `other` has [background] specified it will be given preference /// over any backgroundColor parameter. TextStyle merge(TextStyle? other) {