Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
roastedcpu committed Feb 7, 2022
1 parent 945c27b commit d0b4467
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ export declare class InlineEditingMixinClass {
* row should be a number (element index)
* column can be either a number (element index) or a string (columnId)
* @param {number} row
* @param {number|string} col
* @param {number | string} col
* @public
*/
editCell(row: number, col: number|string): void;
editCell(row: number, col: number | string): void;
}
6 changes: 3 additions & 3 deletions packages/grid-pro/src/vaadin-grid-pro-inline-editing-mixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -456,11 +456,11 @@ export const InlineEditingMixin = (superClass) =>
}

/**
* Triggers the editor for a given (row,col)
* Triggers the editor for a given (row, col)
* row should be a number (element index)
* column can be either a number (element index) or a string (columnId)
* @param {number|object} row
* @param {number|string} col
* @param {number} row
* @param {number | string} col
* @public
*/
editCell(row, col) {
Expand Down

0 comments on commit d0b4467

Please # to comment.