Fix doc comments

This commit is contained in:
Jordan Brown
2018-10-11 12:31:22 -04:00
parent 5ec9784d9d
commit 1cd11ee00e
@@ -22,6 +22,6 @@ namespace Tgstation.Server.Host.Security
/// <param name="validAfter">The <see cref="DateTimeOffset"/> the resulting <see cref="IAuthenticationContext.User"/>'s password must be valid after</param>
/// <param name="cancellationToken">The <see cref="CancellationToken"/> for the operation</param>
/// <returns>A <see cref="Task"/> representing the running operation</returns>
Task CreateAuthenticationContext(long userId, long? instanceId, DateTimeOffset validBefore, CancellationToken cancellationToken);
Task CreateAuthenticationContext(long userId, long? instanceId, DateTimeOffset validAfter, CancellationToken cancellationToken);
}
}