From d30460bf79054eb7a64e404ee9099736d974b14b Mon Sep 17 00:00:00 2001 From: Minh Vu Date: Wed, 3 Jun 2026 23:40:56 +0200 Subject: [PATCH] Fix usage metadata in hello plugin examples --- scripts/plugin-hello-universe.js | 2 +- scripts/plugin-hello-world.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/plugin-hello-universe.js b/scripts/plugin-hello-universe.js index 224d59592588..4c9c6bdb2879 100644 --- a/scripts/plugin-hello-universe.js +++ b/scripts/plugin-hello-universe.js @@ -9,7 +9,7 @@ module.exports = { [`hello`, `universe`], ]; - static usageusage = Command.Usage({ + static usage = Command.Usage({ description: `hello world!`, details: ` This command will print a nice message. diff --git a/scripts/plugin-hello-world.js b/scripts/plugin-hello-world.js index 9d91b6083ff3..3d1bd246087b 100644 --- a/scripts/plugin-hello-world.js +++ b/scripts/plugin-hello-world.js @@ -9,7 +9,7 @@ module.exports = { [`hello`], ]; - static usageusage = Command.Usage({ + static usage = Command.Usage({ description: `hello world!`, details: ` This command will print a nice message.