From 9843af9e0072e72cc167fa3252ba8f25d3db1f9c Mon Sep 17 00:00:00 2001 From: Adam Wright Date: Mon, 15 Jul 2019 17:53:56 -0700 Subject: [PATCH] Reflow some text in the readme (#239) --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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