From 373298913285f14949a2c89f9417643b907b3bb5 Mon Sep 17 00:00:00 2001 From: khanhkhanhlele Date: Fri, 7 Nov 2025 10:24:08 +0700 Subject: [PATCH] Fix typos in some files --- src/aria/private/behaviors/grid/grid-selection.ts | 2 +- src/aria/private/behaviors/grid/grid.ts | 2 +- src/aria/private/deferred-content/deferred-content.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/aria/private/behaviors/grid/grid-selection.ts b/src/aria/private/behaviors/grid/grid-selection.ts index 196eb611ac3f..f66b1de9f105 100644 --- a/src/aria/private/behaviors/grid/grid-selection.ts +++ b/src/aria/private/behaviors/grid/grid-selection.ts @@ -80,7 +80,7 @@ export class GridSelection { ); } - /** Whether a cell is selctable. */ + /** Whether a cell is selectable. */ isSelectable(cell: T) { return cell.selectable() && !cell.disabled(); } diff --git a/src/aria/private/behaviors/grid/grid.ts b/src/aria/private/behaviors/grid/grid.ts index 3c3b107507c5..889bd00fd46c 100644 --- a/src/aria/private/behaviors/grid/grid.ts +++ b/src/aria/private/behaviors/grid/grid.ts @@ -329,7 +329,7 @@ export class Grid { return true; } - // If the cooridnates no longer valid, go back to the first available cell. + // If the coordinates no longer valid, go back to the first available cell. if (this.focusBehavior.focusCoordinates(this.navigationBehavior.peekFirst()!)) { return true; } diff --git a/src/aria/private/deferred-content/deferred-content.ts b/src/aria/private/deferred-content/deferred-content.ts index d6ee311fa768..9b64c497d316 100644 --- a/src/aria/private/deferred-content/deferred-content.ts +++ b/src/aria/private/deferred-content/deferred-content.ts @@ -29,7 +29,7 @@ export class DeferredContentAware { /** * DeferredContent loads/unloads the content based on the visibility. - * The visibilty signal is sent from a parent directive implements + * The visibility signal is sent from a parent directive implements * DeferredContentAware. * * Use this directive as a host directive. For example: