From cc7ed45b1ea4b552f773b721d3ef7481acca95b5 Mon Sep 17 00:00:00 2001 From: Harry Terkelsen Date: Wed, 26 Oct 2022 10:49:27 -0700 Subject: [PATCH] Fix typos in felt build help docs (flutter/engine#37016) --- engine/src/flutter/lib/web_ui/dev/build.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/engine/src/flutter/lib/web_ui/dev/build.dart b/engine/src/flutter/lib/web_ui/dev/build.dart index b36d3035e28..215d59a2dbf 100644 --- a/engine/src/flutter/lib/web_ui/dev/build.dart +++ b/engine/src/flutter/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.' ); }