diff --git a/common/src/main/java/software/bluelib/utils/math/GeometricUtils.java b/common/src/main/java/software/bluelib/utils/math/GeometricUtils.java index 5508de3..8a21a0d 100644 --- a/common/src/main/java/software/bluelib/utils/math/GeometricUtils.java +++ b/common/src/main/java/software/bluelib/utils/math/GeometricUtils.java @@ -44,10 +44,10 @@ private GeometricUtils() {} /** * A {@link Double} that calculates the Euclidean distance between two points in 2D space. * - * @param pX1 {@link double} - The x-coordinate of the first point. - * @param pY1 {@link double} - The y-coordinate of the first point. - * @param pX2 {@link double} - The x-coordinate of the second point. - * @param pY2 {@link double} - The y-coordinate of the second point. + * @param pX1 {@link Double} - The x-coordinate of the first point. + * @param pY1 {@link Double} - The y-coordinate of the first point. + * @param pX2 {@link Double} - The x-coordinate of the second point. + * @param pY2 {@link Double} - The y-coordinate of the second point. * @return The distance between the two points. * @author MeAlam * @since 1.0.0 diff --git a/common/src/main/java/software/bluelib/utils/math/StatisticalUtils.java b/common/src/main/java/software/bluelib/utils/math/StatisticalUtils.java index dfb01e5..be1fd47 100644 --- a/common/src/main/java/software/bluelib/utils/math/StatisticalUtils.java +++ b/common/src/main/java/software/bluelib/utils/math/StatisticalUtils.java @@ -54,7 +54,7 @@ private StatisticalUtils() {} * Logs a warning if the array is empty and a success message with the calculated mean. *

* - * @param pValues {@link double[]} - The array of values to calculate the mean for. + * @param pValues {@link Double[]} - The array of values to calculate the mean for. * @return The mean of the values. * @author MeAlam * @since 1.0.0