Prevent package summaries from being truncated due to incorrect sentence detection

Javadoc doesn't seem to like having `e.g.` as it thinks the sentence
ends there, which is usually incorrect and results in broken descriptions.

This commit rewords the doc strings slightly to avoid problematic parts.

Closes gh-32532
This commit is contained in:
Łukasz Jernaś 2024-03-30 15:44:41 +01:00 committed by GitHub
parent 186e70cd04
commit 86b87d7d85
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
/**
* Core support package for type filtering (e.g. for classpath scanning).
* Core support package for type filtering (for example for classpath scanning).
*/
@NonNullApi
@NonNullFields

View File

@ -1,7 +1,7 @@
/**
* Support for various programming model styles including the invocation of
* different types of handlers, e.g. annotated controller vs simple WebHandler,
* including the handling of handler result values, e.g. @ResponseBody, view
* different types of handlers like an annotated controller or a simple WebHandler.
* Includes the handling of handler result values, e.g. @ResponseBody, view
* resolution, and so on.
*/
@NonNullApi

View File

@ -1,6 +1,6 @@
/**
* Support classes for views based on the JSR-223 script engine abstraction
* (as included in Java 6+), e.g. using JavaScript via Nashorn on JDK 8.
* (as included in Java 6+). For example using JavaScript via Nashorn on JDK 8.
* Contains a View implementation for scripted templates.
*/
@NonNullApi