Skip to content

Commit 774d32c

Browse files
committed
[docs] Missing words
1 parent c2b7aa3 commit 774d32c

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

src/indexes.d.ts

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -404,13 +404,13 @@ export interface Indexes {
404404
*
405405
* This method is useful for iterating over the structure of the Indexes
406406
* object in a functional style. The `indexCallback` parameter is a
407-
* IndexCallback function that will called with the Id of each Index, and with
408-
* a function that can then be used to iterate over each Slice of the Index,
409-
* should you wish.
407+
* IndexCallback function that will be called with the Id of each Index, and
408+
* with a function that can then be used to iterate over each Slice of the
409+
* Index, should you wish.
410410
*
411411
* @param indexCallback The function that should be called for every Index.
412412
* @example
413-
* This example iterates over each Index in a Indexes object, and lists each
413+
* This example iterates over each Index in an Indexes object, and lists each
414414
* Slice Id within them.
415415
*
416416
* ```js
@@ -444,7 +444,8 @@ export interface Indexes {
444444
*
445445
* This method is useful for iterating over the Slice structure of the Index
446446
* in a functional style. The `rowCallback` parameter is a RowCallback
447-
* function that will called with the Id and value of each Row in the Slice.
447+
* function that will be called with the Id and value of each Row in the
448+
* Slice.
448449
*
449450
* @param indexId The Id of the Index to iterate over.
450451
* @param sliceCallback The function that should be called for every Slice.

src/metrics.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ export interface Metrics {
498498
*
499499
* This method is useful for iterating over all the Metrics in a functional
500500
* style. The `metricCallback` parameter is a MetricCallback function that
501-
* will called with the Id of each Metric and its value.
501+
* will be called with the Id of each Metric and its value.
502502
*
503503
* @param metricCallback The function that should be called for every Metric.
504504
* @example

src/store.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1631,7 +1631,7 @@ export interface Store {
16311631
*
16321632
* This method is useful for iterating over the Table structure of the Store
16331633
* in a functional style. The `tableCallback` parameter is a TableCallback
1634-
* function that will called with the Id of each Table, and with a function
1634+
* function that will be called with the Id of each Table, and with a function
16351635
* that can then be used to iterate over each Row of the Table, should you
16361636
* wish.
16371637
*
@@ -1664,8 +1664,8 @@ export interface Store {
16641664
*
16651665
* This method is useful for iterating over the Row structure of the Table in
16661666
* a functional style. The `rowCallback` parameter is a RowCallback function
1667-
* that will called with the Id of each Row, and with a function that can then
1668-
* be used to iterate over each Cell of the Row, should you wish.
1667+
* that will be called with the Id of each Row, and with a function that can
1668+
* then be used to iterate over each Cell of the Row, should you wish.
16691669
*
16701670
* @param tableId The Id of the Table to iterate over.
16711671
* @param rowCallback The function that should be called for every Row.
@@ -1699,7 +1699,7 @@ export interface Store {
16991699
*
17001700
* This method is useful for iterating over the Cell structure of the Row in a
17011701
* functional style. The `cellCallback` parameter is a CellCallback function
1702-
* that will called with the Id and value of each Cell.
1702+
* that will be called with the Id and value of each Cell.
17031703
*
17041704
* @param tableId The Id of the Table containing the Row to iterate over.
17051705
* @param rowId The Id of the Row to iterate over.

0 commit comments

Comments
 (0)