1
0
mirror of https://github.com/DanilaFe/abacus synced 2026-01-15 19:35:20 +00:00

Add numerous documentation fixes.

This commit is contained in:
2017-08-05 16:15:30 -07:00
parent 508e98413d
commit 3e39087fde
5 changed files with 8 additions and 5 deletions

View File

@@ -82,14 +82,14 @@ public interface 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 bigger or equal to the number, if int can hold the value.
*/
NumberInterface ceiling();
/**
* Return the greatest integer less than or equal to the number.
*
* @return the greatest int >= the number, if int can hold the value.
* @return the greatest integer smaller or equal the number, if int can hold the value.
*/
NumberInterface floor();
@@ -104,7 +104,7 @@ public interface NumberInterface {
* Returns the integer representation of this number, discarding any fractional part,
* if int can hold the value.
*
* @return
* @return the integer value of this number.
*/
int intValue();