Skip to content

Commit 5187e98

Browse files
committed
Fix character encoding in source code.
This error was introduced in 18265af. Signed-off-by: Bradley Grainger <[email protected]>
1 parent 2bc171d commit 5187e98

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/MySqlConnector/MySqlConnectionStringBuilder.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -187,12 +187,12 @@ public string CertificatePassword
187187
}
188188

189189
/// <summary>
190-
/// The path to the clients SSL certificate file in PEM format. <see cref="SslKey"/> must also be specified, and <see cref="CertificateFile"/> should not be.
190+
/// The path to the clients SSL certificate file in PEM format. <see cref="SslKey"/> must also be specified, and <see cref="CertificateFile"/> should not be.
191191
/// </summary>
192192
[AllowNull]
193193
[Category("TLS")]
194194
[DefaultValue("")]
195-
[Description("The path to the clients SSL certificate file in PEM format.")]
195+
[Description("The path to the clients SSL certificate file in PEM format.")]
196196
[DisplayName("SSL Cert")]
197197
public string SslCert
198198
{
@@ -201,12 +201,12 @@ public string SslCert
201201
}
202202

203203
/// <summary>
204-
/// The path to the clients SSL private key in PEM format. <see cref="SslCert"/> must also be specified, and <see cref="CertificateFile"/> should not be.
204+
/// The path to the clients SSL private key in PEM format. <see cref="SslCert"/> must also be specified, and <see cref="CertificateFile"/> should not be.
205205
/// </summary>
206206
[AllowNull]
207207
[Category("TLS")]
208208
[DefaultValue("")]
209-
[Description("The path to the clients SSL private key in PEM format.")]
209+
[Description("The path to the clients SSL private key in PEM format.")]
210210
[DisplayName("SSL Key")]
211211
public string SslKey
212212
{
@@ -229,7 +229,7 @@ public string CACertificateFile
229229
}
230230

231231
/// <summary>
232-
/// The path to a CA certificate file in a PEM Encoded (.pem) format. This should be used with a value for the <see cref="SslMode"/> property of <see cref="MySqlSslMode.VerifyCA"/> or <see cref="MySqlSslMode.VerifyFull"/> to enable verification of a CA certificate that is not trusted by the operating systems certificate store.
232+
/// The path to a CA certificate file in a PEM Encoded (.pem) format. This should be used with a value for the <see cref="SslMode"/> property of <see cref="MySqlSslMode.VerifyCA"/> or <see cref="MySqlSslMode.VerifyFull"/> to enable verification of a CA certificate that is not trusted by the operating systems certificate store.
233233
/// </summary>
234234
[AllowNull]
235235
[Category("TLS")]
@@ -707,12 +707,12 @@ public string ServerRsaPublicKeyFile
707707
}
708708

709709
/// <summary>
710-
/// The servers Service Principal Name (for <c>auth_gssapi_client</c> authentication).
710+
/// The servers Service Principal Name (for <c>auth_gssapi_client</c> authentication).
711711
/// </summary>
712712
[AllowNull]
713713
[Category("Connection")]
714714
[DefaultValue("")]
715-
[Description("The servers Service Principal Name (for auth_gssapi_client authentication).")]
715+
[Description("The servers Service Principal Name (for auth_gssapi_client authentication).")]
716716
[DisplayName("Server SPN")]
717717
public string ServerSPN
718718
{

0 commit comments

Comments
 (0)