|
644 | 644 | * The InvalidCellListener type describes a function that is used to listen to |
645 | 645 | * attempts to set invalid data to a Cell. |
646 | 646 | * |
647 | | - * A InvalidCellListener is provided when using the addInvalidCellListener |
| 647 | + * An InvalidCellListener is provided when using the addInvalidCellListener |
648 | 648 | * method. See that method for specific examples. |
649 | 649 | * |
650 | | - * When called, a InvalidCellListener is given a reference to the Store, the Id |
| 650 | + * When called, an InvalidCellListener is given a reference to the Store, the Id |
651 | 651 | * of the Table, the Id of the Row, and the Id of Cell that was being attempted |
652 | 652 | * to be changed. It is also given the invalid value of the Cell, which could |
653 | 653 | * have been of absolutely any type. Since there could have been multiple failed |
|
667 | 667 | * The InvalidValueListener type describes a function that is used to listen to |
668 | 668 | * attempts to set invalid data to a Value. |
669 | 669 | * |
670 | | - * A InvalidValueListener is provided when using the addInvalidValueListener |
| 670 | + * An InvalidValueListener is provided when using the addInvalidValueListener |
671 | 671 | * method. See that method for specific examples. |
672 | 672 | * |
673 | | - * When called, a InvalidValueListener is given a reference to the Store and the |
674 | | - * Id of Value that was being attempted to be changed. It is also given the |
| 673 | + * When called, an InvalidValueListener is given a reference to the Store and |
| 674 | + * the Id of Value that was being attempted to be changed. It is also given the |
675 | 675 | * invalid value of the Value, which could have been of absolutely any type. |
676 | 676 | * Since there could have been multiple failed attempts to set the Value within |
677 | 677 | * a single transaction, this is an array containing each attempt, |
|
1225 | 1225 | * |
1226 | 1226 | * @param tableId The Id of the Table in the Store. |
1227 | 1227 | * @param cellId The Id of the Cell whose values are used for the sorting, or |
1228 | | - * `undefined` to by sort the Row Id itself. |
| 1228 | + * `undefined` to sort by the Row Id itself. |
1229 | 1229 | * @param descending Whether the sorting should be in descending order. |
1230 | 1230 | * @param offset The number of Row Ids to skip for pagination purposes, if |
1231 | 1231 | * any. |
|
2369 | 2369 | * // -> {} |
2370 | 2370 | * ``` |
2371 | 2371 | * @example |
2372 | | - * This example attempts to set the the tabular and keyed value contents of a |
| 2372 | + * This example attempts to set both the tabular and keyed value contents of a |
2373 | 2373 | * Store from an invalid serialization. |
2374 | 2374 | * |
2375 | 2375 | * ```js |
|
3517 | 3517 | * |
3518 | 3518 | * @param tableId The Id of the Table to listen to. |
3519 | 3519 | * @param cellId The Id of the Cell whose values are used for the sorting, or |
3520 | | - * `undefined` to by sort the Row Id itself. |
| 3520 | + * `undefined` to sort by the Row Id itself. |
3521 | 3521 | * @param descending Whether the sorting should be in descending order. |
3522 | 3522 | * @param offset The number of Row Ids to skip for pagination purposes, if |
3523 | 3523 | * any. |
|
4890 | 4890 | * ``` |
4891 | 4891 | * @example |
4892 | 4892 | * This example registers listeners for the end of transactions, and for |
4893 | | - * invalid Cells. The are explicitly called, meaninglessly. The former |
| 4893 | + * invalid Cells. They are explicitly called, meaninglessly. The former |
4894 | 4894 | * receives empty arguments. The latter is not called at all. |
4895 | 4895 | * |
4896 | 4896 | * ```js |
|
0 commit comments