Skip to content

Commit e36a692

Browse files
Update src/Tools/Shared/CommandLine/CommandLineApplicationExtensions.cs
1 parent b15ee03 commit e36a692

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Tools/Shared/CommandLine/CommandLineApplicationExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public static CommandOption Option(this CommandLineApplication command, string t
2626
=> command.Option(
2727
template,
2828
description,
29-
template.Contains("<")
29+
template.Contains('<')
3030
? template.EndsWith(">...", StringComparison.Ordinal) ? CommandOptionType.MultipleValue : CommandOptionType.SingleValue
3131
: CommandOptionType.NoValue);
3232

0 commit comments

Comments
 (0)