fix(api-update): 'bytes ...' -> 'bytes=...'

* update all APIs to contain said change. It's not worth a republish
  though.
This commit is contained in:
Sebastian Thiel
2015-04-12 08:56:48 +02:00
parent 75e73d56d9
commit 3e0a24db0d
161 changed files with 220 additions and 80 deletions

View File

@@ -442,7 +442,7 @@ impl Header for ContentRange {
impl HeaderFormat for ContentRange {
fn fmt_header(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
try!(fmt.write_str("bytes "));
try!(fmt.write_str("bytes="));
match self.range {
Some(ref c) => try!(c.fmt(fmt)),
None => try!(fmt.write_str("*"))