Skip to content

Commit

Permalink
Correct wording in tutorial-two-objectivec.md and tutorial-two-swift.md.
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHubPang authored and michaelklishin committed Sep 3, 2020
1 parent 1da703e commit fac64fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion site/tutorials/tutorial-two-objectivec.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ RMQBasicConsumeOptions manualAck = RMQBasicConsumeNoOptions;
}];
</pre>

Using this code we can be sure that even if a worker dies using while it was
Using this code we can be sure that even if a worker dies while it was
processing a message, nothing will be lost. Soon after the worker dies all
unacknowledged messages will be redelivered.

Expand Down
2 changes: 1 addition & 1 deletion site/tutorials/tutorial-two-swift.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ q.subscribe(manualAck, handler: {(_ message: RMQMessage) -> Void in
})
</pre>

Using this code we can be sure that even if a worker dies using while it was
Using this code we can be sure that even if a worker dies while it was
processing a message, nothing will be lost. Soon after the worker dies all
unacknowledged messages will be redelivered.

Expand Down

0 comments on commit fac64fe

Please sign in to comment.