From 683219dc1c3f1f18fd79996c7c4156372bfd1099 Mon Sep 17 00:00:00 2001 From: Akos Kitta Date: Tue, 16 Aug 2022 16:43:04 +0200 Subject: [PATCH] Fixed typos. Signed-off-by: Akos Kitta --- .../src/browser/boards/boards-service-provider.ts | 7 ++++--- .../src/common/protocol/boards-service.ts | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/arduino-ide-extension/src/browser/boards/boards-service-provider.ts b/arduino-ide-extension/src/browser/boards/boards-service-provider.ts index dc4e6683..1433ee3f 100644 --- a/arduino-ide-extension/src/browser/boards/boards-service-provider.ts +++ b/arduino-ide-extension/src/browser/boards/boards-service-provider.ts @@ -66,10 +66,11 @@ export class BoardsServiceProvider implements FrontendApplicationContribution { protected _availableBoards: AvailableBoard[] = []; /** - * Unlike `onAttachedBoardsChanged` this even fires when the user modifies the selected board in the IDE.\ - * This even also fires, when the boards package was not available for the currently selected board, + * Unlike `onAttachedBoardsChanged` this event fires when the user modifies the selected board in the IDE.\ + * This event also fires, when the boards package was not available for the currently selected board, * and the user installs the board package. Note: installing a board package will set the `fqbn` of the - * currently selected board.\ + * currently selected board. + * * This event is also emitted when the board package for the currently selected board was uninstalled. */ readonly onBoardsConfigChanged = this.onBoardsConfigChangedEmitter.event; diff --git a/arduino-ide-extension/src/common/protocol/boards-service.ts b/arduino-ide-extension/src/common/protocol/boards-service.ts index 41809626..e33a5517 100644 --- a/arduino-ide-extension/src/common/protocol/boards-service.ts +++ b/arduino-ide-extension/src/common/protocol/boards-service.ts @@ -142,7 +142,7 @@ export interface BoardsService export interface Port { // id is the combination of address and protocol // formatted like "
|" used - // to univocally recognize a port + // to uniquely recognize a port readonly id: string; readonly address: string; readonly addressLabel: string;