Skip to content

Commit 2d1d1e6

Browse files
Grammar, typo fixes; cosmetics
1 parent 1acb5c4 commit 2d1d1e6

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -241,9 +241,9 @@ No documented changes yet.
241241

242242
### Enhancements
243243

244-
* `FederationUpstream` and ``FederationUpstreamParams` no longer have a "fidelity gap," a difference between fields
244+
* `FederationUpstream` and `FederationUpstreamParams` no longer have a "fidelity gap," a difference between fields
245245
that had made it impossible to convert the former into the latter
246-
* `FederationUpstream` now includes several missing (rarely used) fields such as `bind_using_nowait`, channel_use_mode`
246+
* `FederationUpstream` now includes several missing (rarely used) fields such as `bind_using_nowait`, `channel_use_mode`
247247

248248
### Breaking Changes
249249

@@ -639,7 +639,7 @@ No documented changes yet.
639639
### Enhancements
640640

641641
* `responses::VirtualHostDefinitionSet` is an equivalent of `responses::ClusterDefinitionSet` but adapted
642-
for the specific of virtual host-specific definitions, namely the fact that they do not contain
642+
for the specifics of virtual host-specific definitions, namely the fact that they do not contain
643643
virtual hosts, users, or permissions, and objects such as queues or bindings do not have the
644644
virtual host field to make it possible to import them into a virtual host with any name
645645

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This is not an AMQP 0-9-1 client (see [amqprs](https://github.com/gftea/amqprs))
88

99
This library is reasonably mature.
1010

11-
Before `1.0.0`, breaking API changes are can and will be introduced.
11+
Before `1.0.0`, breaking API changes can and will be introduced.
1212

1313
## Supported RabbitMQ Series
1414

@@ -58,7 +58,7 @@ Documentation for async API follows that of the blocking API.
5858

5959
### Blocking API
6060

61-
The examples below do not cover the entire API. Most ``
61+
The examples below do not cover the entire API.
6262

6363
#### Instantiate a Client
6464

@@ -167,12 +167,12 @@ let mut b = HTTPClient::builder()
167167
// for x.509 peer verification
168168
b.add_root_certificate(ca_certificate_path);
169169

170-
let httpc = b.build()
170+
let httpc = b.build();
171171
let username = "example";
172-
let password = "ex4mple $eKr37;
172+
let password = "ex4mple $eKr37";
173173

174174
// make sure the endpoint uses TLS and the correct port for TLS-enabled connections
175-
let endpoint = "https://example.domain:15671/api"
175+
let endpoint = "https://example.domain:15671/api";
176176

177177
// this is this library's `ClientBuilder`
178178
let client = ClientBuilder::new()

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ pub mod blocking_api;
3939
pub mod commons;
4040
/// Formatting helpers
4141
pub mod formatting;
42-
/// Providers password hashing utilities for [user pre-seeding](https://www.rabbitmq.com/docs/access-control#seeding)
42+
/// Provides password hashing utilities for [user pre-seeding](https://www.rabbitmq.com/docs/access-control#seeding)
4343
pub mod password_hashing;
4444
pub mod requests;
4545
pub mod responses;

0 commit comments

Comments
 (0)