Skip to content

Commit

Permalink
Fix doc typo (Safari)
Browse files Browse the repository at this point in the history
* Fix typo `Microsoft Apple Safari
  • Loading branch information
hassandraga committed May 6, 2023
1 parent 47cd45e commit 270ae1b
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 @@ -194,7 +194,7 @@ webui_show_browser(my_window, my_html, Firefox);
// Microsoft Edge
webui_show_browser(my_window, my_html, Edge);
// Microsoft Apple Safari (Not Ready)
// Apple Safari (Not Ready)
webui_show_browser(my_window, my_html, Safari);
// The Chromium Project
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 @@ -194,7 +194,7 @@ my_window.show_browser(my_html, Firefox);
// Microsoft Edge
my_window.show_browser(my_html, Edge);

// Microsoft Apple Safari (Not Ready)
// Apple Safari (Not Ready)
my_window.show_browser(my_html, Safari);

// The Chromium Project
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 @@ -129,7 +129,7 @@ webui.ShowBrowser(my_window, my_html, webui.Firefox)
// Microsoft Edge
webui.ShowBrowser(my_window, my_html, webui.Edge)

// Microsoft Apple Safari (Not Ready)
// Apple Safari (Not Ready)
webui.ShowBrowser(my_window, my_html, webui.Safari)

// The Chromium Project
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 @@ -106,7 +106,7 @@ MyWindow.show(my_html, webui.browser.firefox)
# Microsoft Edge
MyWindow.show(my_html, webui.browser.edge)

# Microsoft Apple Safari (Not Ready)
# Apple Safari (Not Ready)
MyWindow.show(my_html, webui.browser.safari)

# The Chromium Project
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 @@ -118,7 +118,7 @@ my_window.showBrowser(my_html, Firefox);
// Microsoft Edge
my_window.showBrowser(my_html, Edge);
// Microsoft Apple Safari (Not Ready)
// Apple Safari (Not Ready)
my_window.showBrowser(my_html, Safari);
// The Chromium Project
Expand Down

0 comments on commit 270ae1b

Please sign in to comment.