Skip to content

Commit

Permalink
Fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
wxwern committed Nov 13, 2023
1 parent c98f20e commit f96989a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/DeveloperGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ Autocompletion constraints are defined via the `AutocompleteConstraint<T>` funct
```java
@FunctionalInterface
public interface AutocompleteConstraint<T> {
boolean isAllowed(T input, Set<T> existingItems);
boolean isAllowed(T input, Set<? extends T> existingItems);
}
```

Expand Down

0 comments on commit f96989a

Please sign in to comment.