Remove redundant at literal in docs (#427)

No need to put literals since it's already in the code section.
This commit is contained in:
Hasan Demirtaş 2023-02-22 06:27:27 +03:00 committed by Jason
parent 1d3f1d3a56
commit 1f17e92974
2 changed files with 4 additions and 4 deletions

View file

@ -95,8 +95,8 @@ public final class ServicePipeline {
* <p>
* The methods should be of the form:
* <pre>{@code
* {@literal @}Nullable
* {@literal @}ServiceImplementation(YourService.class)
* @Nullable
* @ServiceImplementation(YourService.class)
* public YourResult handle(YourContext) {
* return result;
* }

View file

@ -33,8 +33,8 @@ import java.lang.annotation.Target;
* Used to bind methods to services, like such:
*
* <pre>{@code
* {@literal @}Nullable
* {@literal @}ServiceImplementation(YourService.class)
* @Nullable
* @ServiceImplementation(YourService.class)
* public YourResult handle(YourContext) {
* return result;
* }