Few minor doc comment changes

This commit is contained in:
Ajay Bhargav Baaskaran 2016-02-18 16:47:33 -08:00
parent f5480d5c2b
commit 19501c03aa
2 changed files with 4 additions and 4 deletions

View File

@ -8,9 +8,9 @@ using Microsoft.AspNetCore.Http.Features;
namespace Microsoft.AspNetCore.Hosting.Server namespace Microsoft.AspNetCore.Hosting.Server
{ {
/// <summary> /// <summary>
/// Represents an HttpApplication. /// Represents an application.
/// </summary> /// </summary>
/// <typeparam name="TContext">The context associated with the HttpApplication.</typeparam> /// <typeparam name="TContext">The context associated with the application.</typeparam>
public interface IHttpApplication<TContext> public interface IHttpApplication<TContext>
{ {
/// <summary> /// <summary>

View File

@ -17,10 +17,10 @@ namespace Microsoft.AspNetCore.Hosting.Server
IFeatureCollection Features { get; } IFeatureCollection Features { get; }
/// <summary> /// <summary>
/// Start the server with an HttpApplication. /// Start the server with an application.
/// </summary> /// </summary>
/// <param name="application">An instance of <see cref="IHttpApplication{TContext}"/>.</param> /// <param name="application">An instance of <see cref="IHttpApplication{TContext}"/>.</param>
/// <typeparam name="TContext">The context associated with the HttpApplication.</typeparam> /// <typeparam name="TContext">The context associated with the application.</typeparam>
void Start<TContext>(IHttpApplication<TContext> application); void Start<TContext>(IHttpApplication<TContext> application);
} }
} }