| Index: sdk/lib/_internal/pub/lib/src/command.dart
|
| diff --git a/sdk/lib/_internal/pub/lib/src/command.dart b/sdk/lib/_internal/pub/lib/src/command.dart
|
| index ccd54d0ea3d66c24aa87c4f618087b6223f0adf0..6b043547bcb6f5c17b2fc2bfc80a286167696f25 100644
|
| --- a/sdk/lib/_internal/pub/lib/src/command.dart
|
| +++ b/sdk/lib/_internal/pub/lib/src/command.dart
|
| @@ -57,7 +57,7 @@ abstract class PubCommand {
|
| buffer.write(_listCommands(mainCommands));
|
| buffer.writeln();
|
| buffer.writeln(
|
| - 'Use "pub help [command]" for more information about a command.');
|
| + 'Run "pub help [command]" for more information about a command.');
|
| buffer.writeln(
|
| 'See http://dartlang.org/tools/pub for detailed documentation.');
|
|
|
| @@ -248,8 +248,9 @@ abstract class PubCommand {
|
| buffer.write(_listCommands(subcommands));
|
| }
|
|
|
| + buffer.writeln();
|
| + buffer.writeln('Run "pub help" to see global options.');
|
| if (docUrl != null) {
|
| - buffer.writeln();
|
| buffer.writeln("See $docUrl for detailed documentation.");
|
| }
|
|
|
|
|