From 88218f893e2f95dddd2042045b36a7c38c079e35 Mon Sep 17 00:00:00 2001 From: Jake Goulding Date: Sun, 7 Jan 2018 12:36:22 -0500 Subject: [PATCH] Remove duplicate "advance" Also removed some excessive commas --- src/body.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/body.rs b/src/body.rs index c673f62..e31653e 100644 --- a/src/body.rs +++ b/src/body.rs @@ -59,8 +59,8 @@ impl Body { } /// Create a `Body` from a `Read` where the size is known in advance - /// advance, but the data should not be loaded in full to memory. This will - /// set the `Content-Length` header, and stream from the `Read`. + /// but the data should not be fully loaded into memory. This will + /// set the `Content-Length` header and stream from the `Read`. /// /// ```rust /// # use std::fs::File;