From b6ec5cd5b8a9be25c7856c703275afea42cb02a5 Mon Sep 17 00:00:00 2001 From: xiaowei Date: Mon, 2 Aug 2021 18:01:30 +0800 Subject: [PATCH] docs: correct the grammar of comments --- src/services/workbench/activityBarService.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/services/workbench/activityBarService.ts b/src/services/workbench/activityBarService.ts index 924fbf6db..713838c59 100644 --- a/src/services/workbench/activityBarService.ts +++ b/src/services/workbench/activityBarService.ts @@ -29,12 +29,12 @@ export interface IActivityBarService extends Component { */ setActive(id?: string): void; /** - * Remove the specify activity bar by id + * Remove the specific activity bar by id * @param id */ remove(id: string): void; /** - * Toggle the specify activity bar between the display or hidden + * Toggle the specific activity bar between show or hide * @param id activity bar id */ toggleBar(id: string): void; @@ -48,7 +48,7 @@ export interface IActivityBarService extends Component { */ addContextMenu(data: IMenuItemProps | IMenuItemProps[]): void; /** - * Remove the specify contextMenu item by id + * Remove the specific contextMenu item by id * @param id contextmenu id */ removeContextMenu(id: string): void;