Skip to content

Commit

Permalink
Fix Requirements interface example
Browse files Browse the repository at this point in the history
Fixes an incorrect code block which shows an interface `implementing` the Requirements interface, where it should be `extends`.
  • Loading branch information
Galapen authored May 22, 2024
1 parent 6dac93b commit 0220c95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/processors/requirements.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ by the generic types. Example:

```java
public interface YourRequirementInterface
implements Requirement<YourSenderType, YourRequirementInterface> {
extends Requirement<YourSenderType, YourRequirementInterface> {

// Example method
@NonNull String errorMessage();
Expand Down

0 comments on commit 0220c95

Please sign in to comment.