From ee4318795b3ab4a830643bb41b22c9df406887c1 Mon Sep 17 00:00:00 2001 From: Anthony J Date: Tue, 23 Mar 2021 22:57:51 -0400 Subject: [PATCH] Fixed grammar on `SessionOptions.IOTimeout` XML Fixed grammar on `SessionOptions.IOTimeout` --- src/Middleware/Session/src/SessionOptions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Middleware/Session/src/SessionOptions.cs b/src/Middleware/Session/src/SessionOptions.cs index b792deea6df5..8396b09974b8 100644 --- a/src/Middleware/Session/src/SessionOptions.cs +++ b/src/Middleware/Session/src/SessionOptions.cs @@ -38,7 +38,7 @@ public CookieBuilder Cookie public TimeSpan IdleTimeout { get; set; } = TimeSpan.FromMinutes(20); /// - /// The maximim amount of time allowed to load a session from the store or to commit it back to the store. + /// The maximum amount of time allowed to load a session from the store or to commit it back to the store. /// Note this may only apply to asynchronous operations. This timeout can be disabled using . /// public TimeSpan IOTimeout { get; set; } = TimeSpan.FromMinutes(1);