From c59ad29b7c9a48e5e003bb484a58d838c13ae1b5 Mon Sep 17 00:00:00 2001 From: OsamaZ629 <68563195+OsamaZ629@users.noreply.github.com> Date: Mon, 19 Oct 2020 10:40:11 +0300 Subject: [PATCH] Typo :) --- vm/reference/java/lang/VMMath.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vm/reference/java/lang/VMMath.java b/vm/reference/java/lang/VMMath.java index 35c3f645e..c0e35a7c3 100644 --- a/vm/reference/java/lang/VMMath.java +++ b/vm/reference/java/lang/VMMath.java @@ -307,7 +307,7 @@ private VMMath() {} // Prohibits instantiation. static native double ceil(double a); /** - * Take the nearest integer that is that is less than or equal to the + * Take the nearest integer that is less than or equal to the * argument. If the argument is NaN, infinite, or zero, the result is the * same. Note that Math.ceil(x) == -Math.floor(-x). *