Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed grammatical error and typo #528

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions _examples/pubsub/pubsub.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Command pubsub is an example of a fanout exchange with dynamic reliable
// membership, reading from stdin, writing to stdout.
//
// This example shows how to implement reconnect logic independent from a
// This example shows how to implement reconnect logic independent of a
// publish/subscribe loop with bridges to application types.

package main
Expand Down Expand Up @@ -168,7 +168,7 @@ func subscribe(sessions chan chan session, messages chan<- message) {
return
}

routingKey := "application specific routing key for fancy toplogies"
routingKey := "application specific routing key for fancy topologies"
if err := sub.QueueBind(queue, routingKey, exchange, false, nil); err != nil {
log.Printf("cannot consume without a binding to exchange: %q, %v", exchange, err)
return
Expand Down