From f1badb9fb36ea68b199be364d10a83d3e6873f2b Mon Sep 17 00:00:00 2001 From: Eugene Hauptmann Date: Thu, 2 May 2024 14:20:34 -0400 Subject: [PATCH] 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` --- tooling/api/src/menu/menu.ts | 6 +++--- tooling/api/src/menu/submenu.ts | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tooling/api/src/menu/menu.ts b/tooling/api/src/menu/menu.ts index fa98ef07f..f364e594a 100644 --- a/tooling/api/src/menu/menu.ts +++ b/tooling/api/src/menu/menu.ts @@ -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}. */ diff --git a/tooling/api/src/menu/submenu.ts b/tooling/api/src/menu/submenu.ts index e72b2c767..7a2422366 100644 --- a/tooling/api/src/menu/submenu.ts +++ b/tooling/api/src/menu/submenu.ts @@ -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}. */