diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-07-12 14:26:13 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-07-12 14:26:13 +0700 |
commit | 49f328f2506bb887d2bd106face04bc8ee95ce6d (patch) | |
tree | 95abb7e5099db6698fcc33514230f4aff992ece2 /crypto/src/tls/OcspStatusRequest.cs | |
parent | Picnic performance (diff) | |
download | BouncyCastle.NET-ed25519-49f328f2506bb887d2bd106face04bc8ee95ce6d.tar.xz |
Cleanup doc warnings
Diffstat (limited to 'crypto/src/tls/OcspStatusRequest.cs')
-rw-r--r-- | crypto/src/tls/OcspStatusRequest.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/src/tls/OcspStatusRequest.cs b/crypto/src/tls/OcspStatusRequest.cs index a1688efcb..4eaa176d9 100644 --- a/crypto/src/tls/OcspStatusRequest.cs +++ b/crypto/src/tls/OcspStatusRequest.cs @@ -15,7 +15,7 @@ namespace Org.BouncyCastle.Tls private readonly IList<ResponderID> m_responderIDList; private readonly X509Extensions m_requestExtensions; - /// <param name="responderIDList">an <see cref="IList"/> of <see cref="ResponderID"/>, specifying the list of + /// <param name="responderIDList">an <see cref="IList{T}"/> of <see cref="ResponderID"/>, specifying the list of /// trusted OCSP responders. An empty list has the special meaning that the responders are implicitly known to /// the server - e.g., by prior arrangement.</param> /// <param name="requestExtensions">OCSP request extensions. A null value means that there are no extensions. @@ -26,7 +26,7 @@ namespace Org.BouncyCastle.Tls this.m_requestExtensions = requestExtensions; } - /// <returns>an <see cref="IList"/> of <see cref="ResponderID"/>.</returns> + /// <returns>an <see cref="IList{T}"/> of <see cref="ResponderID"/>.</returns> public IList<ResponderID> ResponderIDList { get { return m_responderIDList; } |