Fix the comments to CefCommandLine::AppendSwitch methods

This commit is contained in:
Sergey Markelov
2023-01-12 04:56:26 +00:00
committed by Marshall Greenblatt
parent aae420aa8b
commit 4f336c110b
2 changed files with 7 additions and 7 deletions

View File

@ -168,14 +168,14 @@ class CefCommandLine : public virtual CefBaseRefCounted {
virtual void GetSwitches(SwitchMap& switches) = 0;
///
/// Add a switch to the end of the command line. If the switch has no value
/// pass an empty value string.
/// Add a switch to the end of the command line.
///
/*--cef()--*/
virtual void AppendSwitch(const CefString& name) = 0;
///
/// Add a switch with the specified value to the end of the command line.
/// Add a switch with the specified value to the end of the command line. If
/// the switch has no value pass an empty value string.
///
/*--cef()--*/
virtual void AppendSwitchWithValue(const CefString& name,