Skip to content

Commit

Permalink
docs(cli): Quote special names in help output
Browse files Browse the repository at this point in the history
  • Loading branch information
rekmarks committed Jan 25, 2024
1 parent 26d431a commit e290f86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/cli/src/endo.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const main = async rawArgs => {
.option('-b,--bundle <bundle>', 'Bundle for a web page (weblet)')
.option(
'-p,--powers <endowment>',
'Endowment to give the weblet (a name, none, host, or endo)',
'Endowment to give the weblet (a name, "none", "host", or "endo")',
)
.action(async (webPageName, programPath, cmd) => {
const {
Expand Down Expand Up @@ -92,7 +92,7 @@ export const main = async rawArgs => {
)
.option(
'-p,--powers <endowment>',
'Endowment to give the worklet (a name, none, host, or endo)',
'Endowment to give the worklet (a name, "none", "host", or "endo")',
)
.action(async (filePath, args, cmd) => {
const {
Expand Down

0 comments on commit e290f86

Please sign in to comment.