Skip to content

Commit 823a5f4

Browse files
halter73Tratcher
andauthored
Update src/Servers/Kestrel/Core/src/KestrelServerOptions.cs
Co-Authored-By: Chris Ross <[email protected]>
1 parent 39fa43e commit 823a5f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Servers/Kestrel/Core/src/KestrelServerOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.Core
2222
/// </summary>
2323
public class KestrelServerOptions
2424
{
25-
// The following two lists configure the endpoints that Kestrel should listen toIf both lists is empty, the server.urls setting (e.g. UseUrls) is used.
25+
// The following two lists configure the endpoints that Kestrel should listen to. If both lists are empty, the "urls" config setting (e.g. UseUrls) is used.
2626
internal List<ListenOptions> CodeBackedListenOptions { get; } = new List<ListenOptions>();
2727
internal List<ListenOptions> ConfigurationBackedListenOptions { get; } = new List<ListenOptions>();
2828
internal IEnumerable<ListenOptions> ListenOptions => CodeBackedListenOptions.Concat(ConfigurationBackedListenOptions);

0 commit comments

Comments
 (0)