From 7cd776143b4b102422aaab7a4e5a4d4e16e45218 Mon Sep 17 00:00:00 2001 From: Tim Kuehn Date: Fri, 15 Nov 2019 17:12:00 -0800 Subject: [PATCH] Fix typo --- tarpc/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tarpc/src/lib.rs b/tarpc/src/lib.rs index 51d17b6..461612e 100644 --- a/tarpc/src/lib.rs +++ b/tarpc/src/lib.rs @@ -44,7 +44,7 @@ //! sends a request to another server, that server will see an 8s deadline. //! - Serde serialization: enabling the `serde1` Cargo feature will make service requests and //! responses `Serialize + Deserialize`. It's entirely optional, though: in-memory transports can -//! be used, as well, so the price of eerialization doesn't have to be paid when it's not needed. +//! be used, as well, so the price of serialization doesn't have to be paid when it's not needed. //! //! ## Usage //! Add to your `Cargo.toml` dependencies: