From cda6d791390eb18cc0b5f34e505214215f2752ba Mon Sep 17 00:00:00 2001 From: Still Hsu <5843208+Still34@users.noreply.github.com> Date: Sun, 24 Nov 2019 20:12:26 +0800 Subject: [PATCH] Fix wordings in named argument --- docs/guides/commands/namedarguments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/commands/namedarguments.md b/docs/guides/commands/namedarguments.md index d6b657f84..890a8463f 100644 --- a/docs/guides/commands/namedarguments.md +++ b/docs/guides/commands/namedarguments.md @@ -7,7 +7,7 @@ title: Named Arguments By default, arguments for commands are parsed positionally, meaning that the order matters. But sometimes you may want to define a command -with many optional parameters, and it'd be easier for developers +with many optional parameters, and it'd be easier for end-users to only specify what they want to set, instead of needing them to specify everything by hand.