Skip to content

Commit 379ec4c

Browse files
committed
[docs] Typos
1 parent 64350be commit 379ec4c

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/types/docs/store.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -644,10 +644,10 @@
644644
* The InvalidCellListener type describes a function that is used to listen to
645645
* attempts to set invalid data to a Cell.
646646
*
647-
* A InvalidCellListener is provided when using the addInvalidCellListener
647+
* An InvalidCellListener is provided when using the addInvalidCellListener
648648
* method. See that method for specific examples.
649649
*
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
651651
* of the Table, the Id of the Row, and the Id of Cell that was being attempted
652652
* to be changed. It is also given the invalid value of the Cell, which could
653653
* have been of absolutely any type. Since there could have been multiple failed
@@ -667,11 +667,11 @@
667667
* The InvalidValueListener type describes a function that is used to listen to
668668
* attempts to set invalid data to a Value.
669669
*
670-
* A InvalidValueListener is provided when using the addInvalidValueListener
670+
* An InvalidValueListener is provided when using the addInvalidValueListener
671671
* method. See that method for specific examples.
672672
*
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
675675
* invalid value of the Value, which could have been of absolutely any type.
676676
* Since there could have been multiple failed attempts to set the Value within
677677
* a single transaction, this is an array containing each attempt,
@@ -1225,7 +1225,7 @@
12251225
*
12261226
* @param tableId The Id of the Table in the Store.
12271227
* @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.
12291229
* @param descending Whether the sorting should be in descending order.
12301230
* @param offset The number of Row Ids to skip for pagination purposes, if
12311231
* any.
@@ -2369,7 +2369,7 @@
23692369
* // -> {}
23702370
* ```
23712371
* @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
23732373
* Store from an invalid serialization.
23742374
*
23752375
* ```js
@@ -3517,7 +3517,7 @@
35173517
*
35183518
* @param tableId The Id of the Table to listen to.
35193519
* @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.
35213521
* @param descending Whether the sorting should be in descending order.
35223522
* @param offset The number of Row Ids to skip for pagination purposes, if
35233523
* any.
@@ -4890,7 +4890,7 @@
48904890
* ```
48914891
* @example
48924892
* 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
48944894
* receives empty arguments. The latter is not called at all.
48954895
*
48964896
* ```js

0 commit comments

Comments
 (0)