Fix typos in the comments that generate the documentation

This commit is contained in:
SergeyAvd 2017-10-09 14:08:33 -05:00 committed by Marshall Greenblatt
parent 552a3bf353
commit 4c5ccce85f
2 changed files with 5 additions and 5 deletions

View File

@ -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,

View File

@ -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()--*/