Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/aria/private/behaviors/grid/grid-selection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export class GridSelection<T extends GridSelectionCell> {
);
}

/** Whether a cell is selctable. */
/** Whether a cell is selectable. */
isSelectable(cell: T) {
return cell.selectable() && !cell.disabled();
}
Expand Down
2 changes: 1 addition & 1 deletion src/aria/private/behaviors/grid/grid.ts
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ export class Grid<T extends GridCell> {
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;
}
Expand Down
2 changes: 1 addition & 1 deletion src/aria/private/deferred-content/deferred-content.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down