diff --git a/src/Microsoft.Data.SqlClient/netcore/src/Resources/Strings.Designer.cs b/src/Microsoft.Data.SqlClient/netcore/src/Resources/Strings.Designer.cs index 5f81a9cbcc..3863f8f18d 100644 --- a/src/Microsoft.Data.SqlClient/netcore/src/Resources/Strings.Designer.cs +++ b/src/Microsoft.Data.SqlClient/netcore/src/Resources/Strings.Designer.cs @@ -331,7 +331,7 @@ internal static string ADP_InvalidConnectionOptionValue { } /// - /// Looks up a localized string similar to The value's length for key '{0}' exceeds it's limit of '{1}'.. + /// Looks up a localized string similar to The value's length for key '{0}' exceeds its limit of '{1}'.. /// internal static string ADP_InvalidConnectionOptionValueLength { get { diff --git a/src/Microsoft.Data.SqlClient/netcore/src/Resources/Strings.resx b/src/Microsoft.Data.SqlClient/netcore/src/Resources/Strings.resx index 4dff81e444..637a85b34c 100644 --- a/src/Microsoft.Data.SqlClient/netcore/src/Resources/Strings.resx +++ b/src/Microsoft.Data.SqlClient/netcore/src/Resources/Strings.resx @@ -241,7 +241,7 @@ Use of key '{0}' requires the key '{1}' to be present. - The value's length for key '{0}' exceeds it's limit of '{1}'. + The value's length for key '{0}' exceeds its limit of '{1}'. Keyword not supported: '{0}'. diff --git a/src/Microsoft.Data.SqlClient/netfx/src/Resources/Strings.Designer.cs b/src/Microsoft.Data.SqlClient/netfx/src/Resources/Strings.Designer.cs index adfca21fb3..1ee357c97f 100644 --- a/src/Microsoft.Data.SqlClient/netfx/src/Resources/Strings.Designer.cs +++ b/src/Microsoft.Data.SqlClient/netfx/src/Resources/Strings.Designer.cs @@ -673,7 +673,7 @@ internal static string ADP_InternalProviderError { } /// - /// Looks up a localized string similar to The length of argument '{0}' exceeds it's limit of '{1}'.. + /// Looks up a localized string similar to The length of argument '{0}' exceeds its limit of '{1}'.. /// internal static string ADP_InvalidArgumentLength { get { @@ -718,7 +718,7 @@ internal static string ADP_InvalidConnectionOptionValue { } /// - /// Looks up a localized string similar to The value's length for key '{0}' exceeds it's limit of '{1}'.. + /// Looks up a localized string similar to The value's length for key '{0}' exceeds its limit of '{1}'.. /// internal static string ADP_InvalidConnectionOptionValueLength { get { diff --git a/src/Microsoft.Data.SqlClient/netfx/src/Resources/Strings.resx b/src/Microsoft.Data.SqlClient/netfx/src/Resources/Strings.resx index 5246f97349..f0ef6f3214 100644 --- a/src/Microsoft.Data.SqlClient/netfx/src/Resources/Strings.resx +++ b/src/Microsoft.Data.SqlClient/netfx/src/Resources/Strings.resx @@ -1771,7 +1771,7 @@ Specified QuotePrefix and QuoteSuffix values do not match. - The length of argument '{0}' exceeds it's limit of '{1}'. + The length of argument '{0}' exceeds its limit of '{1}'. Expecting argument of type {1}, but received type {0}. @@ -1783,7 +1783,7 @@ Use of key '{0}' requires the key '{1}' to be present. - The value's length for key '{0}' exceeds it's limit of '{1}'. + The value's length for key '{0}' exceeds its limit of '{1}'. Keyword not supported: '{0}'. diff --git a/src/Microsoft.Data.SqlClient/tests/FunctionalTests/SqlConnectionTest.cs b/src/Microsoft.Data.SqlClient/tests/FunctionalTests/SqlConnectionTest.cs index 844a72caf3..155a896f8a 100644 --- a/src/Microsoft.Data.SqlClient/tests/FunctionalTests/SqlConnectionTest.cs +++ b/src/Microsoft.Data.SqlClient/tests/FunctionalTests/SqlConnectionTest.cs @@ -208,7 +208,7 @@ public void ChangePassword_NewPassword_ExceedMaxLength() { ArgumentException ex = Assert.Throws(() => SqlConnection.ChangePassword("server=SQLSRV", new string('d', 129))); // The length of argument 'newPassword' exceeds - // it's limit of '128' + // its limit of '128' Assert.Null(ex.InnerException); Assert.NotNull(ex.Message); Assert.True(ex.Message.IndexOf("'newPassword'") != -1);