Skip to content

Commit

Permalink
docs(grid): event args interface minor typo
Browse files Browse the repository at this point in the history
  • Loading branch information
damyanpetev committed Jun 25, 2024
1 parent 29a1a64 commit 5f40da0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions projects/igniteui-angular/src/lib/grids/common/events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export interface IGridCellEventArgs extends IBaseEventArgs {
/** Represents the grid cell that triggered the event. */
cell: CellType;
/**
* Represents the original event that ocurred
* Represents the original event that occurred
* Examples of such events include: selecting, clicking, double clicking, etc.
*/
event: Event;
Expand All @@ -35,7 +35,7 @@ export interface IGridRowEventArgs extends IBaseEventArgs {
/** Represents the grid row that triggered the event. */
row: RowType;
/**
* Represents the original event that ocurred
* Represents the original event that occurred
* Examples of such events include: selecting, clicking, double clicking, etc.
*/
event: Event;
Expand Down

0 comments on commit 5f40da0

Please sign in to comment.