Skip to content

Commit

Permalink
Minor doc updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rlubke committed Oct 7, 2022
1 parent 990faae commit 94621a0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
7 changes: 6 additions & 1 deletion src/aggregators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -654,8 +654,13 @@ export namespace aggregator {

/**
* The {@link Comparator} to apply against the extracted values.
* @private
*/
protected comparator?: AggregatorComparator

/**
* The property that results will be ordered by.
*/
protected property?: string

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

Expand Down
2 changes: 1 addition & 1 deletion src/filters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -872,7 +872,7 @@ export namespace filter {
}

/**
* A {@code java.util.function.Predicate} based {@link ExtractorFilter}.
* A predicate based {@link ExtractorFilter}.
*/
export class PredicateFilter
extends ExtractorFilter {
Expand Down
3 changes: 2 additions & 1 deletion typedoc.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
"excludeExternals": false,
"disableSources": true,
"exclude": [
"**/grpc/**"
"**/grpc/**",
"**/node_modules/**"
]
}

0 comments on commit 94621a0

Please sign in to comment.