From 49719c562f530c380220995ff17d6de8a99e67d7 Mon Sep 17 00:00:00 2001 From: Galapen <105314430+Galapen@users.noreply.github.com> Date: Wed, 22 May 2024 22:58:53 +0100 Subject: [PATCH] fix(processors): fix requirements interface example (#35) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes an incorrect code block which shows an interface `implementing` the Requirements interface, where it should be `extends`. ---- 📚 Documentation preview 📚: https://incendocloud--35.org.readthedocs.build/en/35/ --- docs/processors/requirements.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/processors/requirements.md b/docs/processors/requirements.md index 53c66ae..e30e286 100644 --- a/docs/processors/requirements.md +++ b/docs/processors/requirements.md @@ -18,7 +18,7 @@ by the generic types. Example: ```java public interface YourRequirementInterface - implements Requirement { + extends Requirement { // Example method @NonNull String errorMessage();