Skip to content

Commit

Permalink
fix(processors): fix requirements interface example (#35)
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`.

<!-- readthedocs-preview incendocloud start -->
----
πŸ“š Documentation preview πŸ“š:
https://incendocloud--35.org.readthedocs.build/en/35/

<!-- readthedocs-preview incendocloud end -->
  • Loading branch information
Galapen authored May 22, 2024
1 parent 6dac93b commit 49719c5
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 49719c5

Please sign in to comment.