Skip to content

Commit

Permalink
Minor doc improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
pma committed Aug 15, 2014
1 parent d590e3c commit 0c579be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/amqp/basic.ex
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ defmodule AMQP.Basic do
@doc """
Negative acknowledge of one or more messages. If multiple is set to `true`, all messages up to the one
specified by `delivery_tag` are considered as not acknowledged by the server. If `requeue` is set to
`true`, the message will be returned to the queue and redelivered the next available consumer.
`true`, the message will be returned to the queue and redelivered to the next available consumer.
This is a RabbitMQ specific extension to AMQP 0.9.1. It is equivalent to reject, but allows rejecting
multiple messages using the `multiple` option.
Expand Down
1 change: 1 addition & 0 deletions lib/amqp/queue.ex
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ defmodule AMQP.Queue do
* `durable`: If set, keeps the Queue between restarts of the broker
* `auto-delete`: If set, deletes the Queue once all subscribers disconnect
* `exclusive`: If set, only one subscriber can consume from the Queue
* `passive`: If set, raises an error unless the queue already exists
"""
def declare(%Channel{pid: pid}, queue \\ "", options \\ []) do
Expand Down

0 comments on commit 0c579be

Please sign in to comment.