Skip to content

Commit

Permalink
🧹 Adjust option descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
inttter committed Mar 2, 2024
1 parent b30de10 commit 99ea998
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/index.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env node
#!/usr/bin/env node

import axios from 'axios'
import { program } from 'commander'
Expand Down Expand Up @@ -43,10 +43,10 @@ async function main () {
program
.name('discid')
.description('Check a user\'s Discord status from the command line.')
.usage('<userId> [--json]')
.usage('<userId> [--option]')
.arguments('<userId>')
.option('--json', 'Output the user\'s JSON Lanyard data')
.option('--visit, --open', 'Visit the user\'s profile on Discord')
.option('--json', 'output the user\'s full lanyard data in json format')
.option('--visit, --open', 'visit the user\'s profile on Discord')
.action(async (userID, options) => {
try {
const spinner = ora({
Expand Down

0 comments on commit 99ea998

Please sign in to comment.