Skip to content

Commit

Permalink
Remove redundant at literal in docs (#427)
Browse files Browse the repository at this point in the history
No need to put literals since it's already in the code section.
  • Loading branch information
portlek authored Feb 22, 2023
1 parent 1c8552a commit 7be3c07
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
* }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
* 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;
* }
Expand Down

0 comments on commit 7be3c07

Please sign in to comment.