Skip to content

Commit

Permalink
Fix doc typo
Browse files Browse the repository at this point in the history
* Fix typo `Microsoft Opera Browser`
  • Loading branch information
hassandraga committed May 6, 2023
1 parent e526419 commit 47cd45e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion website/docs/c_api.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ webui_show_browser(my_window, my_html, Safari);
// The Chromium Project
webui_show_browser(my_window, my_html, Chromium);
// Microsoft Opera Browser (Not Ready)
// Opera Browser (Not Ready)
webui_show_browser(my_window, my_html, Opera);
// The Brave Browser
Expand Down
2 changes: 1 addition & 1 deletion website/docs/cpp_api.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ my_window.show_browser(my_html, Safari);
// The Chromium Project
my_window.show_browser(my_html, Chromium);

// Microsoft Opera Browser (Not Ready)
// Opera Browser (Not Ready)
my_window.show_browser(my_html, Opera);

// The Brave Browser
Expand Down
2 changes: 1 addition & 1 deletion website/docs/golang_api.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ webui.ShowBrowser(my_window, my_html, webui.Safari)
// The Chromium Project
webui.ShowBrowser(my_window, my_html, webui.Chromium)

// Microsoft Opera Browser (Not Ready)
// Opera Browser (Not Ready)
webui.ShowBrowser(my_window, my_html, webui.Opera)

// The Brave Browser
Expand Down
2 changes: 1 addition & 1 deletion website/docs/python_api.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ MyWindow.show(my_html, webui.browser.safari)
# The Chromium Project
MyWindow.show(my_html, webui.browser.chromium)

# Microsoft Opera Browser (Not Ready)
# Opera Browser (Not Ready)
MyWindow.show(my_html, webui.browser.opera)

# The Brave Browser
Expand Down
2 changes: 1 addition & 1 deletion website/docs/v_api.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ my_window.showBrowser(my_html, Safari);
// The Chromium Project
my_window.showBrowser(my_html, Chromium);
// Microsoft Opera Browser (Not Ready)
// Opera Browser (Not Ready)
my_window.showBrowser(my_html, Opera);
// The Brave Browser
Expand Down

0 comments on commit 47cd45e

Please sign in to comment.