Commit c176346e authored by Wyatt Arent's avatar Wyatt Arent Committed by Adam Barth

Fix Missing newline in flutter run help (#6485)

Issue #6461
parent cc11c39b
...@@ -71,9 +71,11 @@ class RunCommand extends RunCommandBase { ...@@ -71,9 +71,11 @@ class RunCommand extends RunCommandBase {
// Option to write the pid to a file. // Option to write the pid to a file.
argParser.addOption('pid-file', argParser.addOption('pid-file',
help: 'Specify a file to write the process id to.' help: """
'You can send SIGUSR1 to trigger a hot reload ' Specify a file to write the process id to.
'and SIGUSR2 to trigger a full restart.'); You can send SIGUSR1 to trigger a hot reload
and SIGUSR2 to trigger a full restart.
""");
// Hidden option to enable a benchmarking mode. This will run the given // Hidden option to enable a benchmarking mode. This will run the given
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment