diff options
author | Adrien Hopkins <adrien.p.hopkins@gmail.com> | 2025-05-17 23:03:29 -0500 |
---|---|---|
committer | Adrien Hopkins <adrien.p.hopkins@gmail.com> | 2025-05-17 23:03:29 -0500 |
commit | fc5045c4da18b6fd811c6748aa7b5184a80f6769 (patch) | |
tree | 0dcb026b17fc20262a2163bb291cbf3659cbec29 /src/main/java/sevenUnits/utils/UncertainDouble.java | |
parent | 06bd0e63f1b7bc83009ec3f4d7b048dea015529f (diff) |
Setup automated javadoc
./gradlew javadoc
Diffstat (limited to 'src/main/java/sevenUnits/utils/UncertainDouble.java')
-rw-r--r-- | src/main/java/sevenUnits/utils/UncertainDouble.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/sevenUnits/utils/UncertainDouble.java b/src/main/java/sevenUnits/utils/UncertainDouble.java index 1f7ab79..ca94817 100644 --- a/src/main/java/sevenUnits/utils/UncertainDouble.java +++ b/src/main/java/sevenUnits/utils/UncertainDouble.java @@ -61,7 +61,7 @@ public final class UncertainDouble implements Comparable<UncertainDouble> { } /** - * Parses a string in the form of {@link UncertainDouble#toString(boolean)} + * Parses a string in the form of {@link UncertainDouble#toString(boolean, RoundingMode)} * and returns the corresponding {@code UncertainDouble} instance. * <p> * This method allows some alternative forms of the string representation, @@ -346,8 +346,8 @@ public final class UncertainDouble implements Comparable<UncertainDouble> { /** * Returns a string representation of this {@code UncertainDouble}. * <p> - * This method returns the same value as {@link #toString(boolean)}, but - * {@code showUncertainty} is true if and only if the uncertainty is + * This method returns the same value as {@link #toString(boolean, RoundingMode)}, + * but {@code showUncertainty} is true if and only if the uncertainty is * non-zero. * * <p> |