Skip to content

Commit d63324a

Browse files
committed
Fix backticks
1 parent 4dae4c3 commit d63324a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rand_distr/src/frechet.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use rand::Rng;
1616
/// Samples floating-point numbers according to the Fréchet distribution
1717
///
1818
/// This distribution has density function:
19-
/// `f(x) = [(x - μ) / σ]^(-1 - α)` exp[-(x - μ) / σ]^(-α) α / σ ,
19+
/// `f(x) = [(x - μ) / σ]^(-1 - α) exp[-(x - μ) / σ]^(-α) α / σ`,
2020
/// where `μ` is the location parameter, `σ` the scale parameter, and `α` the shape parameter.
2121
///
2222
/// # Example

0 commit comments

Comments
 (0)