Skip to content
This repository was archived by the owner on Oct 12, 2023. It is now read-only.

Commit 435c259

Browse files
SeanFeldmannemakam
authored andcommitted
Fix typo (#583)
1 parent dd9d607 commit 435c259

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/Microsoft.Azure.ServiceBus/Core/MessageReceiver.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ public async Task CompleteAsync(IEnumerable<string> lockTokens)
512512
var lockTokenList = lockTokens.ToList();
513513
if (lockTokenList.Count == 0)
514514
{
515-
throw Fx.Exception.Argument(nameof(lockTokens), Resources.ListOfLockTokensCannotBeEmty);
515+
throw Fx.Exception.Argument(nameof(lockTokens), Resources.ListOfLockTokensCannotBeEmpty);
516516
}
517517

518518
MessagingEventSource.Log.MessageCompleteStart(this.ClientId, lockTokenList.Count, lockTokenList);

src/Microsoft.Azure.ServiceBus/Resources.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.Azure.ServiceBus/Resources.resx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@
159159
<data name="TokenMissingExpiresOn" xml:space="preserve">
160160
<value>The provided token does not specify the 'ExpiresOn' value.</value>
161161
</data>
162-
<data name="ListOfLockTokensCannotBeEmty" xml:space="preserve">
162+
<data name="ListOfLockTokensCannotBeEmpty" xml:space="preserve">
163163
<value>List of lock tokens cannot be empty</value>
164164
</data>
165165
<data name="NotSupportedPropertyType" xml:space="preserve">

0 commit comments

Comments
 (0)