Better wording for /input arg descriptions

1e6f8c6637b3954b709f11ceca3a514dd3b528fa

Wolfsblvt <wolfsblvt@gmail.com>

1 files changed, +3 -3Ignore whitespace
public/scripts/slash-commands.js+3 -3
@@ -1294,14 +1294,14 @@ export function initDefaultSlashCommands() {
12941294 }),
12951295 SlashCommandNamedArgument.fromProps({
12961296 name: 'large',
1297- description: 'show large input field',
1297+ description: 'popup window will be shown larger in height, with more space for content (input field needs to be sized via \'rows\' argument)',
12981298 typeList: [ARGUMENT_TYPE.BOOLEAN],
12991299 defaultValue: 'off',
13001300 enumList: commonEnumProviders.boolean('onOff')(),
13011301 }),
13021302 SlashCommandNamedArgument.fromProps({
13031303 name: 'wide',
13041304 description: 'showpopup widewindow will be shown wider, with a wider input field',
13051305 typeList: [ARGUMENT_TYPE.BOOLEAN],
13061306 defaultValue: 'off',
13071307 enumList: commonEnumProviders.boolean('onOff')(),
@@ -1314,7 +1314,7 @@ export function initDefaultSlashCommands() {
13141314 }),
13151315 SlashCommandNamedArgument.fromProps({
13161316 name: 'rows',
13171317 description: 'number of rows for the input field (lines being displayed)',
13181318 typeList: [ARGUMENT_TYPE.NUMBER],
13191319 }),
13201320 SlashCommandNamedArgument.fromProps({