diff --git a/include/internal/cef_types.h b/include/internal/cef_types.h index 007bd173c..820a80f56 100644 --- a/include/internal/cef_types.h +++ b/include/internal/cef_types.h @@ -202,7 +202,7 @@ typedef struct _cef_settings_t { /// // Set to true (1) to have the browser process message loop run in a separate - // thread. If false (0) than the CefDoMessageLoopWork() function must be + // thread. If false (0) then the CefDoMessageLoopWork() function must be // called from your application message loop. This option is only supported on // Windows and Linux. /// diff --git a/include/wrapper/cef_message_router.h b/include/wrapper/cef_message_router.h index 03839bbf0..8db3f32ef 100644 --- a/include/wrapper/cef_message_router.h +++ b/include/wrapper/cef_message_router.h @@ -78,7 +78,7 @@ // with an error code of -1. // // Queries can be either persistent or non-persistent. If the query is -// persistent than the callbacks will remain registered until one of the +// persistent then the callbacks will remain registered until one of the // following conditions are met: // // A. The query is canceled in JavaScript using the |window.cefQueryCancel|