Skip to content

Commit 3dca12a

Browse files
committed
Pluralizes multi-arguments option audience to audiences
1 parent bcb9cd8 commit 3dca12a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev-proxy/ProxyHost.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ private static Command CreateJwtCreateCommand()
416416
var jwtNameOption = new Option<string>("--name", "The name of the user to create the token for.");
417417
jwtNameOption.AddAlias("-n");
418418

419-
var jwtAudienceOption = new Option<IEnumerable<string>>("--audience", "The audiences to create the token for. Specify once for each audience")
419+
var jwtAudienceOption = new Option<IEnumerable<string>>("--audiences", "The audiences to create the token for. Specify once for each audience")
420420
{
421421
AllowMultipleArgumentsPerToken = true
422422
};

0 commit comments

Comments
 (0)