From 4c5ccce85fd23548e07414985063cead5f262b23 Mon Sep 17 00:00:00 2001 From: SergeyAvd Date: Mon, 9 Oct 2017 14:08:33 -0500 Subject: [PATCH] Fix typos in the comments that generate the documentation --- include/capi/cef_request_capi.h | 6 +++--- include/cef_request.h | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/include/capi/cef_request_capi.h b/include/capi/cef_request_capi.h index 0d754122b..e22943d43 100644 --- a/include/capi/cef_request_capi.h +++ b/include/capi/cef_request_capi.h @@ -33,7 +33,7 @@ // by hand. See the translator.README.txt file in the tools directory for // more information. // -// $hash=e4d28f171862beea61f00e46d7acb8ee4154b077$ +// $hash=dbd087f353209506f042dd2598db753c905f11f0$ // #ifndef CEF_INCLUDE_CAPI_CEF_REQUEST_CAPI_H_ @@ -158,7 +158,7 @@ typedef struct _cef_request_t { void(CEF_CALLBACK* set_flags)(struct _cef_request_t* self, int flags); /// - // Set the URL to the first party for cookies used in combination with + // Get the URL to the first party for cookies used in combination with // cef_urlrequest_t. /// // The resulting string must be freed by calling cef_string_userfree_free(). @@ -166,7 +166,7 @@ typedef struct _cef_request_t { struct _cef_request_t* self); /// - // Get the URL to the first party for cookies used in combination with + // Set the URL to the first party for cookies used in combination with // cef_urlrequest_t. /// void(CEF_CALLBACK* set_first_party_for_cookies)(struct _cef_request_t* self, diff --git a/include/cef_request.h b/include/cef_request.h index 2a7ffd037..ec88ea47e 100644 --- a/include/cef_request.h +++ b/include/cef_request.h @@ -164,14 +164,14 @@ class CefRequest : public virtual CefBaseRefCounted { virtual void SetFlags(int flags) = 0; /// - // Set the URL to the first party for cookies used in combination with + // Get the URL to the first party for cookies used in combination with // CefURLRequest. /// /*--cef()--*/ virtual CefString GetFirstPartyForCookies() = 0; /// - // Get the URL to the first party for cookies used in combination with + // Set the URL to the first party for cookies used in combination with // CefURLRequest. /// /*--cef()--*/