summary refs log tree commit diff
path: root/crypto/src/tls/CertificateUrl.cs
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2022-07-12 14:26:13 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2022-07-12 14:26:13 +0700
commit49f328f2506bb887d2bd106face04bc8ee95ce6d (patch)
tree95abb7e5099db6698fcc33514230f4aff992ece2 /crypto/src/tls/CertificateUrl.cs
parentPicnic performance (diff)
downloadBouncyCastle.NET-ed25519-49f328f2506bb887d2bd106face04bc8ee95ce6d.tar.xz
Cleanup doc warnings
Diffstat (limited to 'crypto/src/tls/CertificateUrl.cs')
-rw-r--r--crypto/src/tls/CertificateUrl.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/src/tls/CertificateUrl.cs b/crypto/src/tls/CertificateUrl.cs
index e14446d6f..822745e4e 100644
--- a/crypto/src/tls/CertificateUrl.cs
+++ b/crypto/src/tls/CertificateUrl.cs
@@ -14,7 +14,7 @@ namespace Org.BouncyCastle.Tls
         private readonly IList<UrlAndHash> m_urlAndHashList;
 
         /// <param name="type">see <see cref="CertChainType"/> for valid constants.</param>
-        /// <param name="urlAndHashList">an <see cref="IList"/> of <see cref="UrlAndHash"/>.</param>
+        /// <param name="urlAndHashList">an <see cref="IList{T}"/> of <see cref="UrlAndHash"/>.</param>
         public CertificateUrl(short type, IList<UrlAndHash> urlAndHashList)
         {
             if (!CertChainType.IsValid(type))
@@ -35,7 +35,7 @@ namespace Org.BouncyCastle.Tls
             get { return m_type; }
         }
 
-        /// <returns>an <see cref="IList"/> of <see cref="UrlAndHash"/>.</returns>
+        /// <returns>an <see cref="IList{T}"/> of <see cref="UrlAndHash"/>.</returns>
         public IList<UrlAndHash> UrlAndHashList
         {
             get { return m_urlAndHashList; }