Skip to content

Commit 7c66825

Browse files
authored
Fix Host/WebHost doc comment mix-up (#34579)
1 parent f8ebab9 commit 7c66825

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/DefaultBuilder/src/WebApplicationBuilder.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,13 +84,13 @@ internal WebApplicationBuilder(Assembly? callingAssembly, string[]? args = null)
8484
public ILoggingBuilder Logging { get; }
8585

8686
/// <summary>
87-
/// An <see cref="IHostBuilder"/> for configuring server specific properties, but not building.
87+
/// An <see cref="IWebHostBuilder"/> for configuring server specific properties, but not building.
8888
/// To build after configuration, call <see cref="Build"/>.
8989
/// </summary>
9090
public ConfigureWebHostBuilder WebHost { get; }
9191

9292
/// <summary>
93-
/// An <see cref="IWebHostBuilder"/> for configuring host specific properties, but not building.
93+
/// An <see cref="IHostBuilder"/> for configuring host specific properties, but not building.
9494
/// To build after configuration, call <see cref="Build"/>.
9595
/// </summary>
9696
public ConfigureHostBuilder Host { get; }

0 commit comments

Comments
 (0)