Skip to content

Commit a60ccd5

Browse files
author
pang fung
committed
Fix typo in string resources
1 parent 68fc259 commit a60ccd5

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

src/Microsoft.Data.SqlClient/netcore/src/Resources/Strings.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Microsoft.Data.SqlClient/netcore/src/Resources/Strings.resx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@
241241
<value>Use of key '{0}' requires the key '{1}' to be present.</value>
242242
</data>
243243
<data name="ADP_InvalidConnectionOptionValueLength" xml:space="preserve">
244-
<value>The value's length for key '{0}' exceeds it's limit of '{1}'.</value>
244+
<value>The value's length for key '{0}' exceeds its limit of '{1}'.</value>
245245
</data>
246246
<data name="ADP_KeywordNotSupported" xml:space="preserve">
247247
<value>Keyword not supported: '{0}'.</value>

src/Microsoft.Data.SqlClient/netfx/src/Resources/Strings.Designer.cs

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Microsoft.Data.SqlClient/netfx/src/Resources/Strings.resx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1771,7 +1771,7 @@
17711771
<value>Specified QuotePrefix and QuoteSuffix values do not match.</value>
17721772
</data>
17731773
<data name="ADP_InvalidArgumentLength" xml:space="preserve">
1774-
<value>The length of argument '{0}' exceeds it's limit of '{1}'.</value>
1774+
<value>The length of argument '{0}' exceeds its limit of '{1}'.</value>
17751775
</data>
17761776
<data name="SQL_WrongType" xml:space="preserve">
17771777
<value>Expecting argument of type {1}, but received type {0}.</value>
@@ -1783,7 +1783,7 @@
17831783
<value>Use of key '{0}' requires the key '{1}' to be present.</value>
17841784
</data>
17851785
<data name="ADP_InvalidConnectionOptionValueLength" xml:space="preserve">
1786-
<value>The value's length for key '{0}' exceeds it's limit of '{1}'.</value>
1786+
<value>The value's length for key '{0}' exceeds its limit of '{1}'.</value>
17871787
</data>
17881788
<data name="ADP_KeywordNotSupported" xml:space="preserve">
17891789
<value>Keyword not supported: '{0}'.</value>

src/Microsoft.Data.SqlClient/tests/FunctionalTests/SqlConnectionTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ public void ChangePassword_NewPassword_ExceedMaxLength()
208208
{
209209
ArgumentException ex = Assert.Throws<ArgumentException>(() => SqlConnection.ChangePassword("server=SQLSRV", new string('d', 129)));
210210
// The length of argument 'newPassword' exceeds
211-
// it's limit of '128'
211+
// its limit of '128'
212212
Assert.Null(ex.InnerException);
213213
Assert.NotNull(ex.Message);
214214
Assert.True(ex.Message.IndexOf("'newPassword'") != -1);

0 commit comments

Comments
 (0)