From f973d59d58f05cca5d74821c95710b67cb2d3a01 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 5 Feb 2020 16:42:25 +0100 Subject: [PATCH] Improve array docblock NO_CI --- Math/Numerics/Interpolation/LinearInterpolation.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Math/Numerics/Interpolation/LinearInterpolation.php b/Math/Numerics/Interpolation/LinearInterpolation.php index f149d95ce..47efe8399 100644 --- a/Math/Numerics/Interpolation/LinearInterpolation.php +++ b/Math/Numerics/Interpolation/LinearInterpolation.php @@ -29,7 +29,7 @@ final class LinearInterpolation implements InterpolationInterface /** * Points for spline interpolation * - * @var array + * @var array * @since 1.0.0 */ private array $points = []; @@ -61,7 +61,7 @@ final class LinearInterpolation implements InterpolationInterface /** * Constructor. * - * @param array $points Points to create the interpolation with + * @param array $points Points to create the interpolation with * * @since 1.0.0 */