Skip to content

Commit 49719c5

Browse files
authored
fix(processors): fix requirements interface example (#35)
Fixes an incorrect code block which shows an interface `implementing` the Requirements interface, where it should be `extends`. <!-- readthedocs-preview incendocloud start --> ---- 📚 Documentation preview 📚: https://incendocloud--35.org.readthedocs.build/en/35/ <!-- readthedocs-preview incendocloud end -->
1 parent 6dac93b commit 49719c5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/processors/requirements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ by the generic types. Example:
1818

1919
```java
2020
public interface YourRequirementInterface
21-
implements Requirement<YourSenderType, YourRequirementInterface> {
21+
extends Requirement<YourSenderType, YourRequirementInterface> {
2222

2323
// Example method
2424
@NonNull String errorMessage();

0 commit comments

Comments
 (0)