Skip to content

Commit

Permalink
Fixed grammar on SessionOptions.IOTimeout XML (#31174)
Browse files Browse the repository at this point in the history
Fixed grammar on `SessionOptions.IOTimeout`
  • Loading branch information
Reapism committed Mar 24, 2021
1 parent 80880d0 commit 28a6f89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Middleware/Session/src/SessionOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public CookieBuilder Cookie
public TimeSpan IdleTimeout { get; set; } = TimeSpan.FromMinutes(20);

/// <summary>
/// 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 <see cref="Timeout.InfiniteTimeSpan"/>.
/// </summary>
public TimeSpan IOTimeout { get; set; } = TimeSpan.FromMinutes(1);
Expand Down

0 comments on commit 28a6f89

Please sign in to comment.