diff --git a/README.md b/README.md index 7a18621..03ddd6d 100644 --- a/README.md +++ b/README.md @@ -36,12 +36,12 @@ Add to your `Cargo.toml` dependencies: tarpc = "0.18.0" ``` -The `service!` macro expands to a collection of items that form an -rpc service. In the above example, the macro is called within the -`hello_service` module. This module will contain a `Client` stub and `Service` trait. There is -These generated types make it easy and ergonomic to write servers without dealing with serialization -directly. Simply implement one of the generated traits, and you're off to the -races! +The `service!` macro expands to a collection of items that form an rpc service. +In the above example, the macro is called within the `hello_service` module. +This module will contain a `Client` stub and `Service` trait. There is These +generated types make it easy and ergonomic to write servers without dealing with +serialization directly. Simply implement one of the generated traits, and you're +off to the races! ## Example