Repository: commons-math
Updated Branches:
  refs/heads/master e1f30a1c3 -> dcaed2dc2


Javadoc.

Thanks to Karl Richter.


Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/05c28c05
Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/05c28c05
Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/05c28c05

Branch: refs/heads/master
Commit: 05c28c05e925581b47b6e73ecc92d7a9062e443a
Parents: e1f30a1
Author: Gilles <er...@apache.org>
Authored: Wed Aug 9 13:54:22 2017 +0200
Committer: Gilles <er...@apache.org>
Committed: Wed Aug 9 13:54:22 2017 +0200

----------------------------------------------------------------------
 .../stat/descriptive/DescriptiveStatistics.java   | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-math/blob/05c28c05/src/main/java/org/apache/commons/math4/stat/descriptive/DescriptiveStatistics.java
----------------------------------------------------------------------
diff --git 
a/src/main/java/org/apache/commons/math4/stat/descriptive/DescriptiveStatistics.java
 
b/src/main/java/org/apache/commons/math4/stat/descriptive/DescriptiveStatistics.java
index 8ae7d7a..ac40dad 100644
--- 
a/src/main/java/org/apache/commons/math4/stat/descriptive/DescriptiveStatistics.java
+++ 
b/src/main/java/org/apache/commons/math4/stat/descriptive/DescriptiveStatistics.java
@@ -110,13 +110,15 @@ public class DescriptiveStatistics implements 
StatisticalSummary, Serializable {
     private UnivariateStatistic sumImpl = new Sum();
 
     /**
-     * Construct a DescriptiveStatistics instance with an infinite window.
+     * Construct a {@code DescriptiveStatistics} instance with an infinite
+     * window.
      */
     public DescriptiveStatistics() {
     }
 
     /**
-     * Construct a DescriptiveStatistics instance with the specified window.
+     * Construct a {@code DescriptiveStatistics} instance with the specified
+     * window.
      *
      * @param window the window size.
      * @throws MathIllegalArgumentException if window size is less than 1 but
@@ -127,10 +129,10 @@ public class DescriptiveStatistics implements 
StatisticalSummary, Serializable {
     }
 
     /**
-     * Construct a DescriptiveStatistics instance with an infinite window
-     * and the initial data values in double[] initialDoubleArray.
-     * If initialDoubleArray is null, then this constructor corresponds to
-     * DescriptiveStatistics()
+     * Construct a {@code DescriptiveStatistics} instance with an infinite
+     * window and the initial data values in {@code initialDoubleArray}.
+     * If {@code initialDoubleArray} is {@code null}, then this constructor
+     * corresponds to {@link #DescriptiveStatistics() }.
      *
      * @param initialDoubleArray the initial double[].
      */
@@ -141,8 +143,8 @@ public class DescriptiveStatistics implements 
StatisticalSummary, Serializable {
     }
 
     /**
-     * Copy constructor.  Construct a new DescriptiveStatistics instance that
-     * is a copy of original.
+     * Copy constructor. Construct a new {@code DescriptiveStatistics} instance
+     * that is a copy of {@code original}.
      *
      * @param original DescriptiveStatistics instance to copy
      * @throws NullArgumentException if original is null

Reply via email to