diff options
author | David Hook <dgh@cryptoworkshop.com> | 2022-07-13 06:26:52 +1000 |
---|---|---|
committer | David Hook <dgh@cryptoworkshop.com> | 2022-07-13 06:26:52 +1000 |
commit | 098d19d9eda97fe8569e07e7901b0d1b3c2898ba (patch) | |
tree | 92911e7a58b9956a0e5d499bcc37df3fdcbd585d /crypto/src/tls/ServerNameList.cs | |
parent | initial Haraka install (diff) | |
parent | Refactoring in Picnic (diff) | |
download | BouncyCastle.NET-ed25519-098d19d9eda97fe8569e07e7901b0d1b3c2898ba.tar.xz |
Merge remote-tracking branch 'refs/remotes/origin/master'
Diffstat (limited to 'crypto/src/tls/ServerNameList.cs')
-rw-r--r-- | crypto/src/tls/ServerNameList.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/src/tls/ServerNameList.cs b/crypto/src/tls/ServerNameList.cs index 248cf2f7f..743dacfe8 100644 --- a/crypto/src/tls/ServerNameList.cs +++ b/crypto/src/tls/ServerNameList.cs @@ -11,7 +11,7 @@ namespace Org.BouncyCastle.Tls { private readonly IList<ServerName> m_serverNameList; - /// <param name="serverNameList">an <see cref="IList"/> of <see cref="ServerName"/>.</param> + /// <param name="serverNameList">an <see cref="IList{T}"/> of <see cref="ServerName"/>.</param> public ServerNameList(IList<ServerName> serverNameList) { if (null == serverNameList) @@ -20,7 +20,7 @@ namespace Org.BouncyCastle.Tls this.m_serverNameList = serverNameList; } - /// <returns>an <see cref="IList"/> of <see cref="ServerName"/>.</returns> + /// <returns>an <see cref="IList{T}"/> of <see cref="ServerName"/>.</returns> public IList<ServerName> ServerNames { get { return m_serverNameList; } |