Skip to content

Commit

Permalink
Typing error fix (#1134)
Browse files Browse the repository at this point in the history
  • Loading branch information
zstadler authored Dec 30, 2024
1 parent 4c2e187 commit 17ec14f
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 17ec14f

Please sign in to comment.