add issue numbers to todos

This commit is contained in:
Sean McArthur
2014-09-03 10:55:21 -07:00
parent 055a783ef0
commit 1ceb468ec3
3 changed files with 8 additions and 6 deletions

View File

@@ -34,7 +34,7 @@ impl Response {
match headers.get_ref::<TransferEncoding>() {
Some(&TransferEncoding(ref codings)) => {
if codings.len() > 1 {
debug!("TODO: handle other codings: {}", codings);
debug!("TODO: #2 handle other codings: {}", codings);
};
if codings.contains(&Chunked) {

View File

@@ -422,7 +422,7 @@ pub enum Encoding {
/// The `chunked` encoding.
Chunked,
// TODO: implement this in `HttpReader`.
// TODO: #2 implement this in `HttpReader`.
/// The `gzip` encoding.
Gzip,
/// The `deflate` encoding.

View File

@@ -10,10 +10,12 @@ use url::Url;
/// > depending on both the method being requested and whether the request
/// > is to a proxy.
/// >
/// > request-target = origin-form
/// > / absolute-form
/// > / authority-form
/// > / asterisk-form
/// > ```notrust
/// > request-target = origin-form
/// > / absolute-form
/// > / authority-form
/// > / asterisk-form
/// > ```
#[deriving(Show, PartialEq, Clone)]
pub enum RequestUri {
/// The most common request target, an absolute path and optional query.