From 1cd11ee00ea771b7da465eeab07cd7a889d7468f Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Thu, 11 Oct 2018 12:31:22 -0400 Subject: [PATCH] Fix doc comments --- .../Security/IAuthenticationContextFactory.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tgstation.Server.Host/Security/IAuthenticationContextFactory.cs b/src/Tgstation.Server.Host/Security/IAuthenticationContextFactory.cs index 437ddae0d0..39afcb925c 100644 --- a/src/Tgstation.Server.Host/Security/IAuthenticationContextFactory.cs +++ b/src/Tgstation.Server.Host/Security/IAuthenticationContextFactory.cs @@ -22,6 +22,6 @@ namespace Tgstation.Server.Host.Security /// The the resulting 's password must be valid after /// The for the operation /// A representing the running operation - Task CreateAuthenticationContext(long userId, long? instanceId, DateTimeOffset validBefore, CancellationToken cancellationToken); + Task CreateAuthenticationContext(long userId, long? instanceId, DateTimeOffset validAfter, CancellationToken cancellationToken); } }