Skip to content

Commit 8fdd710

Browse files
committed
Fix documentation issues from #485
1 parent 187b7d1 commit 8fdd710

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/distributions/dirichlet.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ use distributions::gamma::Gamma;
1616

1717
/// The dirichelet distribution `Dirichlet(alpha)`.
1818
///
19-
/// The Dirichlet distribution is a family of continuous multivariate probability distributions parameterized by
20-
/// a vector alpha of positive reals. https://en.wikipedia.org/wiki/Dirichlet_distribution
19+
/// The Dirichlet distribution is a family of continuous multivariate
20+
/// probability distributions parameterized by a vector alpha of positive reals.
2121
/// It is a multivariate generalization of the beta distribution.
2222
///
2323
/// # Example

src/distributions/mod.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@
8181
//! - Related to real-valued quantities that grow linearly
8282
//! (e.g. errors, offsets):
8383
//! - [`Normal`] distribution, and [`StandardNormal`] as a primitive
84+
//! - [`Cauchy`] distribution
8485
//! - Related to Bernoulli trials (yes/no events, with a given probability):
8586
//! - [`Binomial`] distribution
8687
//! - [`Bernoulli`] distribution, similar to [`Rng::gen_bool`].
@@ -95,7 +96,7 @@
9596
//! - [`ChiSquared`] distribution
9697
//! - [`StudentT`] distribution
9798
//! - [`FisherF`] distribution
98-
//! - Related to continuous multivariate probability distributions
99+
//! - Multivariate probability distributions
99100
//! - [`Dirichlet`] distribution
100101
//!
101102
//! # Examples

0 commit comments

Comments
 (0)