Index: third_party/WebKit/Source/modules/fetch/Headers.cpp |
diff --git a/third_party/WebKit/Source/modules/fetch/Headers.cpp b/third_party/WebKit/Source/modules/fetch/Headers.cpp |
index 5511d78362a530590bb7b522bc1a3f9e8511b2ac..17d2d5509d306ff4816dd5c5d34f3ace56f4380a 100644 |
--- a/third_party/WebKit/Source/modules/fetch/Headers.cpp |
+++ b/third_party/WebKit/Source/modules/fetch/Headers.cpp |
@@ -177,8 +177,9 @@ String Headers::get(const String& name, ExceptionState& exceptionState) { |
exceptionState.throwTypeError("Invalid name"); |
return String(); |
} |
- // "2. Return the value of the first header in header list whose name is |
- // |name|, and null otherwise." |
+ // "2. If there is no header in header list whose name is |name|, |
+ // return null." |
+ // "3. Return the combined value given |name| and header list." |
String result; |
m_headerList->get(name, result); |
return result; |