From c9e0d4f8d3171fa0e21e21b9581034c1a4895757 Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Mon, 7 Aug 2017 11:18:01 -0700 Subject: [PATCH] Fix broken documentation,. --- src/main/java/org/nwapw/abacus/number/NumberInterface.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/nwapw/abacus/number/NumberInterface.java b/src/main/java/org/nwapw/abacus/number/NumberInterface.java index 7af5901..c77f531 100755 --- a/src/main/java/org/nwapw/abacus/number/NumberInterface.java +++ b/src/main/java/org/nwapw/abacus/number/NumberInterface.java @@ -173,7 +173,7 @@ public abstract class NumberInterface { /** * Returns the least integer greater than or equal to the number. * - * @return the least integer >= the number, if int can hold the value. + * @return the least integer greater or equal to the number, if int can hold the value. */ protected abstract NumberInterface ceilingInternal(); @@ -201,7 +201,7 @@ public abstract class NumberInterface { * Also, checks if the thread has been interrupted, and if so, throws * an exception. * - * @return the greatest int >= the number, if int can hold the value. + * @return the greatest int smaller or equal to the number, if int can hold the value. */ public final NumberInterface floor(){ checkInterrupted();