From 18c7f8a2787fddb963f27dec87107013377fcbf4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Sharma?= <737941+loic-sharma@users.noreply.github.com> Date: Mon, 30 Jan 2023 14:46:48 -0800 Subject: [PATCH] Fix typo in --machine help text (#119563) --- .../flutter_tools/lib/src/runner/flutter_command_runner.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/flutter_tools/lib/src/runner/flutter_command_runner.dart b/packages/flutter_tools/lib/src/runner/flutter_command_runner.dart index a7913ee3eaa..23623880ed3 100644 --- a/packages/flutter_tools/lib/src/runner/flutter_command_runner.dart +++ b/packages/flutter_tools/lib/src/runner/flutter_command_runner.dart @@ -283,7 +283,7 @@ class FlutterCommandRunner extends CommandRunner { return; } if (machineFlag && topLevelResults.command?.name != 'analyze') { - throwToolExit('The "--machine" flag is only valid with the "--version" flag or the "analzye --suggestions" command.', exitCode: 2); + throwToolExit('The "--machine" flag is only valid with the "--version" flag or the "analyze --suggestions" command.', exitCode: 2); } await super.runCommand(topLevelResults); },