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:
parent
186e70cd04
commit
86b87d7d85
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue