Skip to content
This repository has been archived by the owner on Mar 5, 2022. It is now read-only.

Commit

Permalink
Merge branch 'features/fix-typo-to-bump-major'
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielweyer committed Jan 3, 2019
2 parents 2d790a2 + 8984b5e commit 9da4889
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions samples/Core/Logic/SqsClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public Task SendDoWorkMessageAsync(DoWorkMessage body)
return SendMessagesAsync(WorkerConstants.DoWorkTaskName, body);
}

public Task SendDoNothingMessageAync(DoNothingMessage body)
public Task SendDoNothingMessageAsync(DoNothingMessage body)
{
return SendMessagesAsync(WorkerConstants.DoNothingTaskName, body);
}
Expand Down Expand Up @@ -63,6 +63,6 @@ SendMessageRequest GenerateRequest()
public interface ISqsClient
{
Task SendDoWorkMessageAsync(DoWorkMessage body);
Task SendDoNothingMessageAync(DoNothingMessage body);
Task SendDoNothingMessageAsync(DoNothingMessage body);
}
}
2 changes: 1 addition & 1 deletion samples/SampleWeb/SendController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public async Task Nothing()
RestDuration = TimeSpan.FromDays(3)
};

await _sqsClient.SendDoNothingMessageAync(body);
await _sqsClient.SendDoNothingMessageAsync(body);
}
}
}

0 comments on commit 9da4889

Please sign in to comment.