Skip to content

Commit

Permalink
Fix typos again (#236)
Browse files Browse the repository at this point in the history
Found via `codespell -H` and `typos --hidden --format brief`
  • Loading branch information
kianmeng authored Nov 6, 2024
1 parent 38111a0 commit 3ce63de
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/amqp/basic.ex
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ defmodule AMQP.Basic do
## Options
* `:no_ack` - If set, the broker is told that the received will not send an
acknoledgement of the message. Once the broker believes it has delivered
acknowledgement of the message. Once the broker believes it has delivered
the message, then it's free to assume that the consuming application has
taken responsibility for it. In general, a lot of applications will not
want these semantics, rather, they will want to explicitly acknowledge the
Expand Down
2 changes: 1 addition & 1 deletion lib/amqp/connection.ex
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ defmodule AMQP.Connection do
* `:frame_max` - The frame_max handshake parameter (defaults `0`)
* `:heartbeat` - The hearbeat interval in seconds (defaults `10`)
* `:heartbeat` - The heartbeat interval in seconds (defaults `10`)
* `:connection_timeout` - The connection timeout in milliseconds (efaults
`50000`)
Expand Down
2 changes: 1 addition & 1 deletion test/application/channel_test.exs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
defmodule AMQP.Application.ChnnelTest do
defmodule AMQP.Application.ChannelTest do
use ExUnit.Case
alias AMQP.Application.Connection, as: AppConn
alias AMQP.Application.Channel, as: AppChan
Expand Down

0 comments on commit 3ce63de

Please sign in to comment.