Skip to content

Commit dce98a2

Browse files
bwilkersoncommit-bot@chromium.org
authored andcommitted
Fix a typo in a diagnostic message (issue 38449)
Change-Id: Ie4f27420d5f1b203501581a7cb71640cce84c46d Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/117762 Reviewed-by: Konstantin Shcheglov <[email protected]> Commit-Queue: Brian Wilkerson <[email protected]>
1 parent d4f1b8f commit dce98a2

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

pkg/analyzer/lib/src/error/codes.dart

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5435,10 +5435,8 @@ class StaticWarningCode extends AnalyzerErrorCode {
54355435
* 2: the number of additional not initialized variables that aren't listed
54365436
*/
54375437
static const StaticWarningCode FINAL_NOT_INITIALIZED_CONSTRUCTOR_3_PLUS =
5438-
const StaticWarningCode(
5439-
'FINAL_NOT_INITIALIZED_CONSTRUCTOR_3',
5440-
"The final variables '{0}', '{1}' and '{2}' more must be "
5441-
"initialized.",
5438+
const StaticWarningCode('FINAL_NOT_INITIALIZED_CONSTRUCTOR_3',
5439+
"The final variables '{0}', '{1}' and {2} more must be initialized.",
54425440
correction: "Try adding initializers for the fields.");
54435441

54445442
/**

0 commit comments

Comments
 (0)