Fix documentation typo in cef_sandbox_win.h

This commit is contained in:
Sergey Markelov 2022-02-18 21:58:50 +00:00 committed by Marshall Greenblatt
parent 4014be78dc
commit a2c621bf8b
1 changed files with 2 additions and 2 deletions

View File

@ -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);