Skip to content

Commit

Permalink
Minor javadoc fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
rmarrowstone committed Sep 17, 2024
1 parent 8dc0efd commit 8ba4616
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,9 @@ public static <T> PathExtractorBuilder<T> standard() {

/**
* Instantiates a thread safe {@link PathExtractor} configured by this builder.
* Attempts to build a "strict" PathExtractor which is much more performant, particularly
* for extractions with many field names. Falls back to the "legacy" implementation if the paths registered are incompatible with the "strict" implementation.
* Attempts to build a "strict" PathExtractor which is much more performant, particularly for extractions with many
* field names. Falls back to the "legacy" implementation if the paths registered are incompatible with the "strict"
* implementation.
* <br>
* Use buildStrict to ensure the more optimal implementation is used.
* @return new {@link PathExtractor} instance.
Expand All @@ -73,8 +74,8 @@ public PathExtractor<T> build() {
/**
* Instantiate a "stricter" and more optimized PathExtractor.
* <br>
* Supports search paths where there is only one "variant" of step
* type from each parent step, and only one callback per state.
* Supports search paths where there is only one "variant" of step type from each parent step, and only one callback
* per state.
* Annotations matching is only supported on the root or wildcards.
* Case insensitivity is supported on field names, not annotations.
* <br>
Expand Down

0 comments on commit 8ba4616

Please sign in to comment.