diff --git a/docs/DeveloperGuide.md b/docs/DeveloperGuide.md index 0778ee1eb20..7b6b2946686 100644 --- a/docs/DeveloperGuide.md +++ b/docs/DeveloperGuide.md @@ -256,7 +256,7 @@ Autocompletion constraints are defined via the `AutocompleteConstraint` funct ```java @FunctionalInterface public interface AutocompleteConstraint { - boolean isAllowed(T input, Set existingItems); + boolean isAllowed(T input, Set existingItems); } ```