fix: fixed typo in menu and submenu tooling (#9645)

* Update menu.ts

replaced `Platform-spcific` to `Platform-specific`

* Update submenu.ts

replaced `Platform-spcific` to `Platform-specific`
This commit is contained in:
Eugene Hauptmann
2024-05-02 14:20:34 -04:00
committed by GitHub
parent 97ec422f22
commit f1badb9fb3
2 changed files with 6 additions and 6 deletions

View File

@@ -90,7 +90,7 @@ export class Menu extends MenuItemBase {
/**
* Add a menu item to the end of this menu.
*
* ## Platform-spcific:
* ## Platform-specific:
*
* - **macOS:** Only {@linkcode Submenu}s can be added to a {@linkcode Menu}.
*/
@@ -119,7 +119,7 @@ export class Menu extends MenuItemBase {
/**
* Add a menu item to the beginning of this menu.
*
* ## Platform-spcific:
* ## Platform-specific:
*
* - **macOS:** Only {@linkcode Submenu}s can be added to a {@linkcode Menu}.
*/
@@ -148,7 +148,7 @@ export class Menu extends MenuItemBase {
/**
* Add a menu item to the specified position in this menu.
*
* ## Platform-spcific:
* ## Platform-specific:
*
* - **macOS:** Only {@linkcode Submenu}s can be added to a {@linkcode Menu}.
*/

View File

@@ -90,7 +90,7 @@ export class Submenu extends MenuItemBase {
/**
* Add a menu item to the end of this submenu.
*
* ## Platform-spcific:
* ## Platform-specific:
*
* - **macOS:** Only {@linkcode Submenu}s can be added to a {@linkcode Menu}.
*/
@@ -119,7 +119,7 @@ export class Submenu extends MenuItemBase {
/**
* Add a menu item to the beginning of this submenu.
*
* ## Platform-spcific:
* ## Platform-specific:
*
* - **macOS:** Only {@linkcode Submenu}s can be added to a {@linkcode Menu}.
*/
@@ -148,7 +148,7 @@ export class Submenu extends MenuItemBase {
/**
* Add a menu item to the specified position in this submenu.
*
* ## Platform-spcific:
* ## Platform-specific:
*
* - **macOS:** Only {@linkcode Submenu}s can be added to a {@linkcode Menu}.
*/