Unverified Commit cda6c27f authored by Jenn Magder's avatar Jenn Magder Committed by GitHub

Add spaces between sentences in help text (#61135)

parent 8bd2e658
...@@ -522,10 +522,10 @@ To edit platform code in an IDE see https://flutter.dev/developing-packages/#edi ...@@ -522,10 +522,10 @@ To edit platform code in an IDE see https://flutter.dev/developing-packages/#edi
void _addPlatformsOptions() { void _addPlatformsOptions() {
argParser.addMultiOption('platforms', argParser.addMultiOption('platforms',
help: 'the platforms supported by this project.' help: 'The platforms supported by this project. '
'This argument only works when the --template is set to app or plugin.' 'This argument only works when the --template is set to app or plugin. '
'Platform folders (e.g. android/) will be generated in the target project.' 'Platform folders (e.g. android/) will be generated in the target project. '
'When adding platforms to a plugin project, the pubspec.yaml will be updated with the requested platform.' 'When adding platforms to a plugin project, the pubspec.yaml will be updated with the requested platform. '
'Adding desktop platforms requires the corresponding desktop config setting to be enabled.', 'Adding desktop platforms requires the corresponding desktop config setting to be enabled.',
defaultsTo: _kAvailablePlatforms, defaultsTo: _kAvailablePlatforms,
allowed: _kAvailablePlatforms); allowed: _kAvailablePlatforms);
......
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