Fixed typos.

Signed-off-by: Akos Kitta <a.kitta@arduino.cc>
This commit is contained in:
Akos Kitta 2022-08-16 16:43:04 +02:00 committed by Akos Kitta
parent d674ab9b73
commit 683219dc1c
2 changed files with 5 additions and 4 deletions

View File

@ -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;

View File

@ -142,7 +142,7 @@ export interface BoardsService
export interface Port {
// id is the combination of address and protocol
// formatted like "<address>|<protocol>" used
// to univocally recognize a port
// to uniquely recognize a port
readonly id: string;
readonly address: string;
readonly addressLabel: string;