Fix typos in felt build help docs (flutter/engine#37016)

This commit is contained in:
Harry Terkelsen 2022-10-26 10:49:27 -07:00 committed by GitHub
parent 11bb611e7d
commit cc7ed45b1e

View File

@ -23,14 +23,14 @@ class BuildCommand extends Command<bool> with ArgUtils<bool> {
);
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.'
);
}