From 8867adcae9a47383d0c90149d0aa7e5b52644571 Mon Sep 17 00:00:00 2001 From: Harry Terkelsen Date: Tue, 25 Oct 2022 13:49:00 -0700 Subject: [PATCH] Fix typos in felt build help docs --- lib/web_ui/dev/build.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/web_ui/dev/build.dart b/lib/web_ui/dev/build.dart index b36d3035e2899..215d59a2dbf95 100644 --- a/lib/web_ui/dev/build.dart +++ b/lib/web_ui/dev/build.dart @@ -23,14 +23,14 @@ class BuildCommand extends Command with ArgUtils { ); argParser.addFlag( 'build-canvaskit', - help: 'Build CanvasKit locally instead of getting it from CIPD. Disabled ' + help: 'Build CanvasKit locally instead of getting it from CIPD. Enabled ' 'by default.', defaultsTo: true ); argParser.addFlag( 'host', - help: 'Build the host build instead of the wasm build, which is currently' - 'needed for `flutter run --local-engine` to work' + help: 'Build the host build instead of the wasm build, which is ' + 'currently needed for `flutter run --local-engine` to work.' ); }