diff --git a/src/site/xdoc/userguide/distribution.xml b/src/site/xdoc/userguide/distribution.xml
index 09035b557..4d5683f06 100644
--- a/src/site/xdoc/userguide/distribution.xml
+++ b/src/site/xdoc/userguide/distribution.xml
@@ -70,24 +70,20 @@ double upperTail = 1.0 - t.cumulativeProbability(2.75); // P(T >= 2.75)Distribution,
-
- ContinuousDistribution,
-
- DiscreteDistribution, and
- IntegerDistribution interfaces serve as
- base types for any extension. These serve as the basis for all the
+ RealDistribution,
+ IntegerDistribution and
+ MultivariateRealDistribution
+ interfaces serve as base types for any extension. These serve as the basis for all the
distributions directly supported by Commons-Math and using those interfaces
for implementation purposes will ensure any extension is compatible with the
remainder of Commons-Math. To aid in implementing a distribution extension,
- the
- AbstractDistribution,
- AbstractContinuousDistribution, and
- AbstractIntegerDistribution provide implementation building blocks and
- offer basic distribution functionality. By extending these abstract classes
- directly, much of the repetitive distribution implementation is already
- developed and should save time and effort in developing user-defined
- distributions.
+ the AbstractRealDistribution,
+ AbstractIntegerDistribution and
+ AbstractMultivariateRealDistribution
+ provide implementation building blocks and offer basic distribution functionality.
+ By extending these abstract classes directly, much of the repetitive distribution
+ implementation is already developed and should save time and effort in developing
+ user-defined distributions.