Skip to content

Commit d0fb292

Browse files
authored
fix: unexpected chinese punctuation (#143678)
*Fixed the issue with abnormal Chinese punctuation marks.*
1 parent d3b60d4 commit d0fb292

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/flutter/lib/src/widgets/basic.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ class Opacity extends SingleChildRenderObjectWidget {
390390
/// ).createShader(bounds);
391391
/// },
392392
/// child: const Text(
393-
/// 'I’m burning the memories',
393+
/// "I'm burning the memories",
394394
/// style: TextStyle(color: Colors.white),
395395
/// ),
396396
/// )
@@ -5034,8 +5034,8 @@ class Row extends Flex {
50345034
/// const Text('Through the night, we have one shot to live another day'),
50355035
/// const Text('We cannot let a stray gunshot give us away'),
50365036
/// const Text('We will fight up close, seize the moment and stay in it'),
5037-
/// const Text('It’s either that or meet the business end of a bayonet'),
5038-
/// const Text('The code word is Rochambeau, dig me?'),
5037+
/// const Text("It's either that or meet the business end of a bayonet"),
5038+
/// const Text("The code word is 'Rochambeau,' dig me?"),
50395039
/// Text('Rochambeau!', style: DefaultTextStyle.of(context).style.apply(fontSizeFactor: 2.0)),
50405040
/// ],
50415041
/// )

0 commit comments

Comments
 (0)