Unverified Commit 70a88c3b authored by Jonah Williams's avatar Jonah Williams Committed by GitHub

[flutter_tools] fix capitalization in build commands (#58842)

parent 4f88ed1d
...@@ -43,7 +43,7 @@ class BuildLinuxCommand extends BuildSubCommand { ...@@ -43,7 +43,7 @@ class BuildLinuxCommand extends BuildSubCommand {
}; };
@override @override
String get description => 'build the Linux desktop target.'; String get description => 'Build a Linux desktop application.';
@override @override
Future<FlutterCommandResult> runCommand() async { Future<FlutterCommandResult> runCommand() async {
......
...@@ -44,7 +44,7 @@ class BuildMacosCommand extends BuildSubCommand { ...@@ -44,7 +44,7 @@ class BuildMacosCommand extends BuildSubCommand {
}; };
@override @override
String get description => 'build the macOS desktop target.'; String get description => 'Build a macOS desktop application.';
@override @override
Future<FlutterCommandResult> runCommand() async { Future<FlutterCommandResult> runCommand() async {
......
...@@ -53,7 +53,7 @@ class BuildWebCommand extends BuildSubCommand { ...@@ -53,7 +53,7 @@ class BuildWebCommand extends BuildSubCommand {
bool get hidden => !featureFlags.isWebEnabled; bool get hidden => !featureFlags.isWebEnabled;
@override @override
final String description = 'build a web application bundle.'; final String description = 'Build a web application bundle.';
@override @override
Future<FlutterCommandResult> runCommand() async { Future<FlutterCommandResult> runCommand() async {
......
...@@ -45,7 +45,7 @@ class BuildWindowsCommand extends BuildSubCommand { ...@@ -45,7 +45,7 @@ class BuildWindowsCommand extends BuildSubCommand {
}; };
@override @override
String get description => 'build the desktop Windows target.'; String get description => 'Build a Windows desktop application.';
@visibleForTesting @visibleForTesting
VisualStudio visualStudioOverride; VisualStudio visualStudioOverride;
......
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