Skip to content

Commit 94621a0

Browse files
committed
Minor doc updates
1 parent 990faae commit 94621a0

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

src/aggregators.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -654,8 +654,13 @@ export namespace aggregator {
654654

655655
/**
656656
* The {@link Comparator} to apply against the extracted values.
657+
* @private
657658
*/
658659
protected comparator?: AggregatorComparator
660+
661+
/**
662+
* The property that results will be ordered by.
663+
*/
659664
protected property?: string
660665

661666
/**
@@ -804,7 +809,7 @@ export namespace aggregator {
804809
* various {@link EntryAggregator} classes, but in some cases provide additional type
805810
* safety. They also tend to make the code more readable, especially if imported
806811
* statically, so their use is strongly encouraged in lieu of direct construction
807-
* of EntryAggregator} classes.
812+
* of {@link EntryAggregator} classes.
808813
*/
809814
export class Aggregators {
810815

src/filters.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -872,7 +872,7 @@ export namespace filter {
872872
}
873873

874874
/**
875-
* A {@code java.util.function.Predicate} based {@link ExtractorFilter}.
875+
* A predicate based {@link ExtractorFilter}.
876876
*/
877877
export class PredicateFilter
878878
extends ExtractorFilter {

typedoc.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
"excludeExternals": false,
1414
"disableSources": true,
1515
"exclude": [
16-
"**/grpc/**"
16+
"**/grpc/**",
17+
"**/node_modules/**"
1718
]
1819
}
1920

0 commit comments

Comments
 (0)