From 43ac23b4c7b4410b338788763f29034cf149cf5d Mon Sep 17 00:00:00 2001 From: Kevin Moore Date: Fri, 5 May 2023 16:53:23 -0700 Subject: [PATCH] targets/web.dart - fix typo (#126114) *Replace this paragraph with a description of what this PR is changing or adding, and why. Consider including before/after screenshots.* *List which issues are fixed by this PR. You must list at least one issue.* *If you had to change anything in the [flutter/tests] repo, include a link to the migration guide as per the [breaking change policy].* --- packages/flutter_tools/lib/src/build_system/targets/web.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/flutter_tools/lib/src/build_system/targets/web.dart b/packages/flutter_tools/lib/src/build_system/targets/web.dart index 5e5fb5e363..1799e2c583 100644 --- a/packages/flutter_tools/lib/src/build_system/targets/web.dart +++ b/packages/flutter_tools/lib/src/build_system/targets/web.dart @@ -204,7 +204,7 @@ class Dart2JSTarget extends Dart2WebTarget { final File dart2jsDeps = environment.buildDir.childFile('app.dill.deps'); if (!dart2jsDeps.existsSync()) { environment.logger.printWarning( - 'Warning: dart2js did not produced expected deps list at ' + 'Warning: dart2js did not produce expected deps list at ' '${dart2jsDeps.path}', ); return;