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 {
4343 }
4444
4545 /// 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
4946 fn all ( & self ) -> Vec < ( & str , Vec < & str > ) > {
5047 let mut all = Vec :: new ( ) ;
5148 for key in self . headers ( ) . keys ( ) {
@@ -138,7 +135,7 @@ impl conduit::Request for ConduitRequest {
138135
139136 /// Returns the value of the `Host` header
140137 ///
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
142139 fn host ( & self ) -> conduit:: Host < ' _ > {
143140 let host = self
144141 . parts
You can’t perform that action at this time.
0 commit comments