From ede9380d020a908fdc4c088f2974dd9004f13c5e Mon Sep 17 00:00:00 2001 From: Kenzie Schmoll Date: Wed, 1 Nov 2023 14:46:00 -0700 Subject: [PATCH] name and description --- tool/lib/commands/serve.dart | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tool/lib/commands/serve.dart b/tool/lib/commands/serve.dart index 393f89416b0..3f728b36e02 100644 --- a/tool/lib/commands/serve.dart +++ b/tool/lib/commands/serve.dart @@ -57,10 +57,12 @@ class ServeCommand extends Command { } @override - String get name => 'build-release'; + String get name => 'serve'; @override - String get description => 'Runs '; + String get description => + 'Builds DevTools in release mode and serves the web app with a locally ' + 'running DevTools server.'; @override Future run() async {