Merge pull request #44 from hishamco/docs

Fix 'RequestLocalizationMiddleware' missing docs
This commit is contained in:
Eilon Lipton 2015-06-26 08:45:10 -07:00
commit 08b70e22e6
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ namespace Microsoft.AspNet.Localization
/// Creates a new <see cref="RequestLocalizationMiddleware"/>.
/// </summary>
/// <param name="next">The <see cref="RequestDelegate"/> representing the next middleware in the pipeline.</param>
/// <param name="options"></param>
/// <param name="options">The <see cref="RequestLocalizationOptions"/> representing the options for the <see cref="RequestLocalizationMiddleware"/>.</param>
public RequestLocalizationMiddleware([NotNull] RequestDelegate next, [NotNull] RequestLocalizationOptions options)
{
_next = next;