From cda6c27ff7994e6be08615bf19ea02e6c2187b91 Mon Sep 17 00:00:00 2001 From: Jenn Magder Date: Mon, 13 Jul 2020 11:16:03 -0700 Subject: [PATCH] Add spaces between sentences in help text (#61135) --- packages/flutter_tools/lib/src/commands/create.dart | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/flutter_tools/lib/src/commands/create.dart b/packages/flutter_tools/lib/src/commands/create.dart index f3b25fa0229..d91ebd46f02 100644 --- a/packages/flutter_tools/lib/src/commands/create.dart +++ b/packages/flutter_tools/lib/src/commands/create.dart @@ -522,10 +522,10 @@ To edit platform code in an IDE see https://flutter.dev/developing-packages/#edi void _addPlatformsOptions() { argParser.addMultiOption('platforms', - help: 'the platforms supported by this project.' - '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.' - 'When adding platforms to a plugin project, the pubspec.yaml will be updated with the requested platform.' + help: 'The platforms supported by this project. ' + '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. ' + '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.', defaultsTo: _kAvailablePlatforms, allowed: _kAvailablePlatforms);