From d0fb2929df21b193c519b225f129fdca734952bf Mon Sep 17 00:00:00 2001 From: ufolux Date: Tue, 27 Feb 2024 18:47:22 -0500 Subject: [PATCH] fix: unexpected chinese punctuation (#143678) *Fixed the issue with abnormal Chinese punctuation marks.* --- packages/flutter/lib/src/widgets/basic.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/flutter/lib/src/widgets/basic.dart b/packages/flutter/lib/src/widgets/basic.dart index 8e9067d89a3..343388d0311 100644 --- a/packages/flutter/lib/src/widgets/basic.dart +++ b/packages/flutter/lib/src/widgets/basic.dart @@ -390,7 +390,7 @@ class Opacity extends SingleChildRenderObjectWidget { /// ).createShader(bounds); /// }, /// child: const Text( -/// 'I’m burning the memories', +/// "I'm burning the memories", /// style: TextStyle(color: Colors.white), /// ), /// ) @@ -5034,8 +5034,8 @@ class Row extends Flex { /// const Text('Through the night, we have one shot to live another day'), /// const Text('We cannot let a stray gunshot give us away'), /// const Text('We will fight up close, seize the moment and stay in it'), -/// const Text('It’s either that or meet the business end of a bayonet'), -/// const Text('The code word is ‘Rochambeau,’ dig me?'), +/// const Text("It's either that or meet the business end of a bayonet"), +/// const Text("The code word is 'Rochambeau,' dig me?"), /// Text('Rochambeau!', style: DefaultTextStyle.of(context).style.apply(fontSizeFactor: 2.0)), /// ], /// )