| Index: pkg/intl/lib/bidi_formatter.dart
|
| diff --git a/pkg/intl/lib/bidi_formatter.dart b/pkg/intl/lib/bidi_formatter.dart
|
| index 2c3c8c4be4e81c7f17b64b67f3b1ee8993e0ffe4..5f23d3fd121e66a0d5ca4e68afce688860e487d3 100644
|
| --- a/pkg/intl/lib/bidi_formatter.dart
|
| +++ b/pkg/intl/lib/bidi_formatter.dart
|
| @@ -108,11 +108,11 @@ class BidiFormatter {
|
| if (directionChange) {
|
| spanDirection = ' dir=${direction.spanText}';
|
| }
|
| - result= '<span$spanDirection>$text</span>';
|
| + result = '<span$spanDirection>$text</span>';
|
| } else {
|
| result = text;
|
| }
|
| - return result + (resetDir? _resetDir(text, direction, isHtml) : '');
|
| + return result + (resetDir ? _resetDir(text, direction, isHtml) : '');
|
| }
|
|
|
| /**
|
| @@ -143,7 +143,7 @@ class BidiFormatter {
|
| result = "${marker}$text${Bidi.PDF}";
|
|
|
| }
|
| - return result + (resetDir? _resetDir(text, direction, isHtml) : '');
|
| + return result + (resetDir ? _resetDir(text, direction, isHtml) : '');
|
| }
|
|
|
| /**
|
|
|