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
{
/// <summary>
/// Represents an HttpApplication.
/// Represents an application.
/// </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>
{
/// <summary>

View File

@ -17,10 +17,10 @@ namespace Microsoft.AspNetCore.Hosting.Server
IFeatureCollection Features { get; }
/// <summary>
/// Start the server with an HttpApplication.
/// Start the server with an application.
/// </summary>
/// <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);
}
}