File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed
Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ This is not an AMQP 0-9-1 client (see [amqprs](https://github.com/gftea/amqprs))
88
99This 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
168168b . add_root_certificate (ca_certificate_path );
169169
170- let httpc = b . build ()
170+ let httpc = b . build ();
171171let 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`
178178let client = ClientBuilder :: new ()
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ pub mod blocking_api;
3939pub mod commons;
4040/// Formatting helpers
4141pub 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)
4343pub mod password_hashing;
4444pub mod requests;
4545pub mod responses;
You can’t perform that action at this time.
0 commit comments