@@ -180,39 +180,39 @@ ArgParser _createArgsParser() {
180
180
help: 'Display progress indications to console stdout' , negatable: false );
181
181
parser.addOption ('sdk-readme' ,
182
182
help:
183
- 'Path to the SDK description file. Use if generating Dart SDK docs.' );
183
+ 'Path to the SDK description file; use if generating Dart SDK docs.' );
184
184
parser.addOption ('input' ,
185
- help: 'Path to source directory' , defaultsTo: Directory .current.path);
185
+ help: 'Path to source directory. ' , defaultsTo: Directory .current.path);
186
186
parser.addOption ('output' ,
187
187
help: 'Path to output directory.' , defaultsTo: defaultOutDir);
188
188
parser.addOption ('header' ,
189
189
allowMultiple: true , help: 'path to file containing HTML text.' );
190
190
parser.addOption ('footer' ,
191
191
allowMultiple: true , help: 'path to file containing HTML text.' );
192
192
parser.addOption ('exclude' ,
193
- allowMultiple: true , help: 'library names to ignore' );
193
+ allowMultiple: true , help: 'Library names to ignore. ' );
194
194
parser.addOption ('include' ,
195
- allowMultiple: true , help: 'library names to generate docs for' );
195
+ allowMultiple: true , help: 'Library names to generate docs for. ' );
196
196
parser.addOption ('include-external' ,
197
197
allowMultiple: true ,
198
- help: 'additional (external) dart files to include, use "dir/fileName", '
199
- 'as in lib/material.dart' );
198
+ help: 'Additional (external) dart files to include; use "dir/fileName", '
199
+ 'as in lib/material.dart. ' );
200
200
parser.addOption ('hosted-url' ,
201
201
help:
202
202
'URL where the docs will be hosted (used to generate the sitemap).' );
203
203
parser.addOption ('example-path-prefix' ,
204
- help: 'Prefix for @example paths. Default is project root. ' );
204
+ help: 'Prefix for @example paths.\n (defaults to the project root) ' );
205
205
parser.addOption ('rel-canonical-prefix' ,
206
206
help:
207
- 'If provided, add a rel="canonical" prefixed with provided value. \n '
208
- 'Consider using if building many versions of the docs for public SEO. '
209
- 'Learn more at https://goo.gl/gktN6F.' );
207
+ 'If provided, add a rel="canonical" prefixed with provided value. '
208
+ 'Consider using if\n building many versions of the docs for public '
209
+ 'SEO; learn more at https://goo.gl/gktN6F.' );
210
210
parser.addFlag ('include-source' ,
211
- help: 'Show source code blocks' , negatable: true , defaultsTo: true );
211
+ help: 'Show source code blocks. ' , negatable: true , defaultsTo: true );
212
212
parser.addOption ('favicon' ,
213
- help: 'A path to a favicon for the generated docs' );
213
+ help: 'A path to a favicon for the generated docs. ' );
214
214
parser.addFlag ('use-categories' ,
215
- help: 'Group libraries from the same package into categories' ,
215
+ help: 'Group libraries from the same package into categories. ' ,
216
216
negatable: false ,
217
217
defaultsTo: false );
218
218
return parser;
0 commit comments