Skip to content

Commit bdefb1d

Browse files
committed
fix: google command errors when query.length > 200 (#3)
1 parent 4ef1c88 commit bdefb1d

File tree

1 file changed

+2
-1
lines changed
  • src/commands/Information/Miscellaneous

1 file changed

+2
-1
lines changed

src/commands/Information/Miscellaneous/google.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ export default class extends SteveCommand {
1111
super(store, file, directory, {
1212
description: 'Search Google for a phrase.',
1313
examples: ['google john green'],
14-
usage: '<search:string>',
14+
extendedHelp: 'The maximum character length for Google searches is 200.',
15+
usage: '<search:string{,200}>',
1516
helpUsage: 'query'
1617
});
1718
}

0 commit comments

Comments
 (0)