Remove duplicate "advance"

Also removed some excessive commas
This commit is contained in:
Jake Goulding
2018-01-07 12:36:22 -05:00
committed by GitHub
parent 374ec44d34
commit 88218f893e

View File

@@ -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;