Skip to content

Commit da8cd8d

Browse files
steveklabnikalexcrichton
authored andcommitted
/*! -> //!
Sister pull request of rust-lang/rust#19288, but for the other style of block doc comment.
1 parent aa22d98 commit da8cd8d

File tree

1 file changed

+8
-11
lines changed

1 file changed

+8
-11
lines changed

distributions/mod.rs

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,14 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
/*!
12-
Sampling from random distributions.
13-
14-
This is a generalization of `Rand` to allow parameters to control the
15-
exact properties of the generated values, e.g. the mean and standard
16-
deviation of a normal distribution. The `Sample` trait is the most
17-
general, and allows for generating values that change some state
18-
internally. The `IndependentSample` trait is for generating values
19-
that do not need to record state.
20-
21-
*/
11+
//! Sampling from random distributions.
12+
//!
13+
//! This is a generalization of `Rand` to allow parameters to control the
14+
//! exact properties of the generated values, e.g. the mean and standard
15+
//! deviation of a normal distribution. The `Sample` trait is the most
16+
//! general, and allows for generating values that change some state
17+
//! internally. The `IndependentSample` trait is for generating values
18+
//! that do not need to record state.
2219
2320
#![experimental]
2421

0 commit comments

Comments
 (0)