This is an automated email from the ASF dual-hosted git repository.

erans pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-numbers.git


The following commit(s) were added to refs/heads/master by this push:
     new d4c00eb  Javadoc.
d4c00eb is described below

commit d4c00eb68544f3adf258d09ab2c7daf3feb1f8c3
Author: Gilles Sadowski <gillese...@gmail.com>
AuthorDate: Thu Jun 17 16:01:54 2021 +0200

    Javadoc.
---
 .../apache/commons/numbers/examples/jmh/core/NormPerformance.java   | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/commons-numbers-examples/examples-jmh/src/main/java/org/apache/commons/numbers/examples/jmh/core/NormPerformance.java
 
b/commons-numbers-examples/examples-jmh/src/main/java/org/apache/commons/numbers/examples/jmh/core/NormPerformance.java
index e3bcf9d..1792bb3 100644
--- 
a/commons-numbers-examples/examples-jmh/src/main/java/org/apache/commons/numbers/examples/jmh/core/NormPerformance.java
+++ 
b/commons-numbers-examples/examples-jmh/src/main/java/org/apache/commons/numbers/examples/jmh/core/NormPerformance.java
@@ -184,7 +184,7 @@ public class NormPerformance {
         eval(v -> Math.hypot(v[0], v[1]), input, bh);
     }
 
-    /** Compute the performance of the {@link Norm.L2#value(double, double)} 
method.
+    /** Compute the performance of the {@link Norm#of(double, double)} method.
      * @param input benchmark input
      * @param bh blackhole
      */
@@ -193,7 +193,7 @@ public class NormPerformance {
         eval(v -> Norm.L2.of(v[0], v[1]), input, bh);
     }
 
-    /** Compute the performance of the {@link Norm.L2#value(double, double, 
double)} method.
+    /** Compute the performance of the {@link Norm#of(double, double, double)} 
method.
      * @param input benchmark input
      * @param bh blackhole
      */
@@ -202,7 +202,7 @@ public class NormPerformance {
         eval(v -> Norm.L2.of(v[0], v[1], v[2]), input, bh);
     }
 
-    /** Compute the performance of the {@link Norm.L2#value(double[])} method.
+    /** Compute the performance of the {@link Norm#of(double[])} method.
      * @param input benchmark input
      * @param bh blackhole
      */

Reply via email to