Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit db23a6c

Browse files
Clement Skaumkustermann
authored andcommitted
Adds missing comma in EngineParagraphStyle.toString() (#13795)
1 parent 270fa82 commit db23a6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/web_ui/lib/src/engine/text/paragraph.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ class EngineParagraphStyle implements ui.ParagraphStyle {
419419
'fontSize: ${_fontSize != null ? _fontSize.toStringAsFixed(1) : "unspecified"}, '
420420
'height: ${_height != null ? "${_height.toStringAsFixed(1)}x" : "unspecified"}, '
421421
'ellipsis: ${_ellipsis != null ? "\"$_ellipsis\"" : "unspecified"}, '
422-
'locale: ${_locale ?? "unspecified"}'
422+
'locale: ${_locale ?? "unspecified"}, '
423423
'shadows: ${_shadows ?? "unspecified"}'
424424
')';
425425
} else {

0 commit comments

Comments
 (0)