File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -43,9 +43,6 @@ impl conduit::Headers for Parts {
43
43
}
44
44
45
45
/// Returns a representation of all headers
46
- ///
47
- /// There is currently a bug where keys with mutliple values will be duplicated.
48
- /// See: https://github.com/hyperium/http/issues/199
49
46
fn all ( & self ) -> Vec < ( & str , Vec < & str > ) > {
50
47
let mut all = Vec :: new ( ) ;
51
48
for key in self . headers ( ) . keys ( ) {
@@ -138,7 +135,7 @@ impl conduit::Request for ConduitRequest {
138
135
139
136
/// Returns the value of the `Host` header
140
137
///
141
- /// If the header is not present or invalid UTF-8, then the empty string is returned
138
+ /// If the header is not present or is invalid UTF-8, then the empty string is returned
142
139
fn host ( & self ) -> conduit:: Host < ' _ > {
143
140
let host = self
144
141
. parts
You can’t perform that action at this time.
0 commit comments