| Index: lib/command_runner.dart
|
| diff --git a/lib/command_runner.dart b/lib/command_runner.dart
|
| index d0cbf261b9a28e2cd29dd53a462eb1f35451485b..1e33965cc0b55cacdd59640ef324bf21a2c21653 100644
|
| --- a/lib/command_runner.dart
|
| +++ b/lib/command_runner.dart
|
| @@ -98,7 +98,7 @@ Run "$executableName help <command>" for more information about a command.''';
|
| /// Parses [args] and invokes [Command.run] on the chosen command.
|
| ///
|
| /// This always returns a [Future] in case the command is asynchronous. The
|
| - /// [Future] will throw a [UsageError] if [args] was invalid.
|
| + /// [Future] will throw a [UsageException] if [args] was invalid.
|
| Future run(Iterable<String> args) =>
|
| new Future.sync(() => runCommand(parse(args)));
|
|
|
|
|