8000 typo · bsumgit/rabbitmq-tutorials@65aa898 · GitHub
[go: up one dir, main page]

Skip to content

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 65aa898

Browse files
committed
typo
1 parent 4411385 commit 65aa898

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

python/tutorial-one.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ RabbitMQ uses a weird jargon, but it's simple once you'll get it. For example:
9898
}
9999
{% enddot %}
100100

101-
* _Consuming_ has a simmilar meaning to receiving. _Consumer_ is a program
101+
* _Consuming_ has a similar meaning to receiving. _Consumer_ is a program
102102
that mostly waits to receive messages. On our drawings it's shown with "C":
103103

104104
{% dot -Gsize="10,0.3" -Grankdir=LR %}
@@ -257,7 +257,7 @@ run the command as many times you like, and only one will be created.
257257
You may ask why to declare the queue again - we have already declared it
258258
in our previous code. We could have avoided that if we were sure
259259
that the queue already exists. For example if `send.py` program was
260-
runned before. But we're not yet sure which
260+
run before. But we're not yet sure which
261261
program to run as first. In such case it's a good practice to repeat
262262
declaring the queue in both programs.
263263

python/tutorial-three.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ messages and second will receive and print them.
3232
In our logging system every running copy of the receiver program
3333
will be able to get the same messages. That way we'll be able to run one
3434
receiver and direct the logs to disk, in the same time we'll be able to run
35-
another reciver and see the same logs on the screen.
35+
another receiver and see the same logs on the screen.
3636

37-
Essentially, emited log messages are going to be broadcasted to all
37+
Essentially, emitted log messages are going to be broadcasted to all
3838
the receivers.
3939

4040

@@ -119,9 +119,9 @@ queues it knows. And that's exactly what we need for our logger.
119119
> because we were using a default `""` _empty string_ (nameless) exchange.
120120
> Remember how publishing worked:
121121
>
122-
> chnnel.basic_publish(exchange='',
123-
> routing_key='test',
124-
> body=message)
122+
> channel.basic_publish(exchange='',
123+
> routing_key='test',
124+
> body=message)
125125
>
126126
> The _empty string_ exchange is special: message is
127127
> routed to the queue with name specified by `routing_key`.

python/tutorial-two.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ it.
144144
If consumer dies without sending ack, Rabbit will understand that a
145145
message wasn't processed fully and will redispatch it to another
146146
consumer. That way you can be sure that no message is lost, even if
147-
the workers occasionaly die.
147+
the workers occasionally die.
148148

149149
There aren't any message timeouts, Rabbit will redispatch the
150150
message only when the worker connection dies. It's fine if processing
@@ -339,7 +339,7 @@ And our worker:
339339

340340

341341
Using message acknowledgments and `prefetch_count` you may set up
342-
quite a decent work queue. The durabiltiy options let the tasks
342+
quite a decent work queue. The durability options let the tasks
343343
to survive even if Rabbit is restarted.
344344

345345
Now we can move on to [part 3]({{ python_three_url }}) and learn how to

0 commit comments

Comments
 (0)
0