From fb95fcbae546d5cd1d60b1fccdc7db026a706706 Mon Sep 17 00:00:00 2001 From: Michael Thomsen Date: Fri, 25 May 2018 23:10:16 +0200 Subject: [PATCH] Fully rename to hot restart (#17897) * Fully rename to hot restart Follow-up change to https://github.com/flutter/flutter/commit/f48dec570c899d8e222f5b3b7cbebd7d19fe6843 * Review feedback --- packages/flutter_tools/lib/src/run_hot.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/flutter_tools/lib/src/run_hot.dart b/packages/flutter_tools/lib/src/run_hot.dart index 3898764b13a..f3be2feb3d4 100644 --- a/packages/flutter_tools/lib/src/run_hot.dart +++ b/packages/flutter_tools/lib/src/run_hot.dart @@ -717,9 +717,9 @@ class HotRunner extends ResidentRunner { const String bold = '\u001B[0;1m'; const String reset = '\u001B[0m'; printStatus( - '$fire To hot reload your app on the fly, press "r". To restart the app entirely, press "R".', - ansiAlternative: '$red$fire$bold To hot reload your app on the fly, ' - 'press "r". To restart the app entirely, press "R".$reset' + '$fire To hot reload changes while running, press "r". To hot restart (and rebuild state), press "R".', + ansiAlternative: '$red$fire$bold To hot reload changes while running, press "r",' + 'To hot restart (and rebuild state), press "R".$reset' ); for (FlutterDevice device in flutterDevices) { final String dname = device.device.name;