From d0ccb8b625d5564bb625cb47dbd73526927ef9e4 Mon Sep 17 00:00:00 2001 From: Arthur Drobot Date: Mon, 7 Aug 2017 10:54:27 -0700 Subject: [PATCH] Improve some comments of NumberInterface functions. --- .../java/org/nwapw/abacus/number/NumberInterface.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 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..e997c7a 100755 --- a/src/main/java/org/nwapw/abacus/number/NumberInterface.java +++ b/src/main/java/org/nwapw/abacus/number/NumberInterface.java @@ -182,7 +182,7 @@ public abstract class NumberInterface { * Also, checks if the thread has been interrupted, and if so, throws * an exception. * - * @return the least integer bigger or equal to the number, if int can hold the value. + * @return the least integer bigger or equal to the number. */ public final NumberInterface ceiling(){ checkInterrupted(); @@ -192,7 +192,7 @@ public abstract class NumberInterface { /** * Return the greatest integer less than or equal to the number. * - * @return the greatest integer smaller or equal the number, if int can hold the value. + * @return the greatest integer smaller or equal the number. */ protected abstract NumberInterface floorInternal(); @@ -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 greater than or equal to the number. */ public final NumberInterface floor(){ checkInterrupted(); @@ -216,7 +216,7 @@ public abstract class NumberInterface { protected abstract NumberInterface fractionalPartInternal(); /** - * Returns the fractional part of the number. + * Returns the fractional part of the number, specifically x - floor(x). * Also, checks if the thread has been interrupted, * and if so, throws an exception. * @return the fractional part of the number.