Skip to content

Commit 2bd26d0

Browse files
committed
Rust: Renaming and readme cleanup
1 parent 89d1f34 commit 2bd26d0

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

rust/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ tutorials](https://www.rabbitmq.com/getstarted.html).
55

66
The examples use [lapin](https://github.com/sozu-proxy/lapin) client library.
77

8-
To successfully use the examples you will need a running RabbitMQ server.
8+
You should have a RabbitMQ server running on default port.
99

1010
## Requirements
1111

@@ -38,16 +38,16 @@ cargo run --bin new-task "hi" # specify a custom message
3838
cd 03-publish-subscribe
3939
```
4040
```
41-
cargo run --bin receive
42-
cargo run --bin emit "hi" # specify a custom message
41+
cargo run --bin subscribe
42+
cargo run --bin publish "hi" # specify a custom message
4343
```
4444

4545
#### [Tutorial four: Routing](https://www.rabbitmq.com/tutorial-four-dotnet.html)
4646
```
4747
cd 04-routing
4848
```
4949
```
50-
cargo run --bin receive info error # specify log levels
50+
cargo run --bin receive-direct info error # specify log levels
5151
cargo run --bin emit-direct error "help!" # specify severity and custom message
5252
```
5353

0 commit comments

Comments
 (0)