From a2c621bf8b7cc323138c795b8a90629a8d35334c Mon Sep 17 00:00:00 2001 From: Sergey Markelov Date: Fri, 18 Feb 2022 21:58:50 +0000 Subject: [PATCH] Fix documentation typo in cef_sandbox_win.h --- include/cef_sandbox_win.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/cef_sandbox_win.h b/include/cef_sandbox_win.h index 8d53af953..4308af092 100644 --- a/include/cef_sandbox_win.h +++ b/include/cef_sandbox_win.h @@ -50,13 +50,13 @@ extern "C" { // 2. Link the executable with the cef_sandbox static library. // 3. Call the cef_sandbox_info_create() function from within the executable // (not from a separate DLL) and pass the resulting pointer into both the -// CefExecutProcess() and CefInitialize() functions via the +// CefExecuteProcess() and CefInitialize() functions via the // |windows_sandbox_info| parameter. /// // Create the sandbox information object for this process. It is safe to create // multiple of this object and to destroy the object immediately after passing -// into the CefExecutProcess() and/or CefInitialize() functions. +// into the CefExecuteProcess() and/or CefInitialize() functions. /// void* cef_sandbox_info_create(void);