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:
parent
1d3f1d3a56
commit
1f17e92974
2 changed files with 4 additions and 4 deletions
|
|
@ -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;
|
||||
* }
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
* }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue