Remove a "The " in "The The HTTP headers of the response"
https://bugs.webkit.org/show_bug.cgi?id=194851
Reviewed by Carlos Garcia Campos.
* Shared/API/glib/WebKitURIResponse.cpp:
(webkit_uri_response_class_init): Fix typo in description of the WebKitURIResponse::http-headers property.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@250967 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/Source/WebKit/ChangeLog b/Source/WebKit/ChangeLog
index e8592ce..e75f215 100644
--- a/Source/WebKit/ChangeLog
+++ b/Source/WebKit/ChangeLog
@@ -1,3 +1,13 @@
+2019-10-10 Adrian Perez de Castro <aperez@igalia.com>
+
+ Remove a "The " in "The The HTTP headers of the response"
+ https://bugs.webkit.org/show_bug.cgi?id=194851
+
+ Reviewed by Carlos Garcia Campos.
+
+ * Shared/API/glib/WebKitURIResponse.cpp:
+ (webkit_uri_response_class_init): Fix typo in description of the WebKitURIResponse::http-headers property.
+
2019-10-10 youenn fablet <youenn@apple.com>
[Mac] Allow SYS___pthread_markcancel call
diff --git a/Source/WebKit/Shared/API/glib/WebKitURIResponse.cpp b/Source/WebKit/Shared/API/glib/WebKitURIResponse.cpp
index d245589..46e6546 100644
--- a/Source/WebKit/Shared/API/glib/WebKitURIResponse.cpp
+++ b/Source/WebKit/Shared/API/glib/WebKitURIResponse.cpp
@@ -170,7 +170,7 @@
g_param_spec_boxed(
"http-headers",
_("HTTP Headers"),
- _("The The HTTP headers of the response"),
+ _("The HTTP headers of the response"),
SOUP_TYPE_MESSAGE_HEADERS,
WEBKIT_PARAM_READABLE));
}