summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Soref <jsoref@users.noreply.github.com>2019-02-12 12:28:22 -0500
committerJosh Soref <jsoref@users.noreply.github.com>2019-02-12 12:28:22 -0500
commitd84011fd92fcca1f5e89dcba56d3d3cd75d16b75 (patch)
tree45693cf9e6405ad92b698e0c122ffb9c94ff9f59
parent2e6f56a6b337d6382f069061e08660ef8c08bd92 (diff)
downloadrabbitmq-server-git-d84011fd92fcca1f5e89dcba56d3d3cd75d16b75.tar.gz
spelling: synchronous
-rw-r--r--src/rabbit_fifo_client.erl8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/rabbit_fifo_client.erl b/src/rabbit_fifo_client.erl
index ef0991f675..c7f908c9e9 100644
--- a/src/rabbit_fifo_client.erl
+++ b/src/rabbit_fifo_client.erl
@@ -165,7 +165,7 @@ enqueue(Msg, State) ->
%% @doc Dequeue a message from the queue.
%%
-%% This is a syncronous call. I.e. the call will block until the command
+%% This is a synchronous call. I.e. the call will block until the command
%% has been accepted by the ra process or it times out.
%%
%% @param ConsumerTag a unique tag to identify this particular consumer.
@@ -297,7 +297,7 @@ discard(ConsumerTag, [_|_] = MsgIds,
%% @doc Register with the rabbit_fifo queue to "checkout" messages as they
%% become available.
%%
-%% This is a syncronous call. I.e. the call will block until the command
+%% This is a synchronous call. I.e. the call will block until the command
%% has been accepted by the ra process or it times out.
%%
%% @param ConsumerTag a unique tag to identify this particular consumer.
@@ -316,7 +316,7 @@ checkout(ConsumerTag, NumUnsettled, ConsumerInfo, State0) ->
%% @doc Register with the rabbit_fifo queue to "checkout" messages as they
%% become available.
%%
-%% This is a syncronous call. I.e. the call will block until the command
+%% This is a synchronous call. I.e. the call will block until the command
%% has been accepted by the ra process or it times out.
%%
%% @param ConsumerTag a unique tag to identify this particular consumer.
@@ -374,7 +374,7 @@ credit(ConsumerTag, Credit, Drain,
%% @doc Cancels a checkout with the rabbit_fifo queue for the consumer tag
%%
-%% This is a syncronous call. I.e. the call will block until the command
+%% This is a synchronous call. I.e. the call will block until the command
%% has been accepted by the ra process or it times out.
%%
%% @param ConsumerTag a unique tag to identify this particular consumer.