diff --git a/packages/flutter_tools/lib/src/commands/emulators.dart b/packages/flutter_tools/lib/src/commands/emulators.dart index addfe64219a..11463363326 100644 --- a/packages/flutter_tools/lib/src/commands/emulators.dart +++ b/packages/flutter_tools/lib/src/commands/emulators.dart @@ -46,9 +46,9 @@ class EmulatorsCommand extends FlutterCommand { await emulatorManager.getEmulatorsById(id).toList(); if (emulators.isEmpty) { - printStatus("No emulator found that matches the ID '$id'."); + printStatus("No emulator found that matches '$id'."); } else if (emulators.length > 1) { - printStatus("More than one emulator matches the ID '$id':\n"); + printStatus("More than one emulator matches '$id':\n"); Emulator.printEmulators(emulators); } else { emulators.first.launch();