Skip to content

Commit

Permalink
Typing error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zstadler authored Dec 25, 2024
1 parent 4c2e187 commit 2bfd03d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*/
public interface ZoomFunction<T> extends IntFunction<T> {

/** Returns {@code value} when {@code zom >= min}, and null otherwise. */
/** Returns {@code value} when {@code zoom >= min}, and null otherwise. */
static <T> ZoomFunction<T> minZoom(int min, T value) {
return zoom -> zoom >= min ? value : null;
}
Expand Down

0 comments on commit 2bfd03d

Please sign in to comment.