Skip to content

Commit c290676

Browse files
author
LukeMathWalker
committed
Simplify ref in markdown
1 parent 7d3c6e3 commit c290676

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/numeric/impl_numeric.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ impl<A, S, D> ArrayBase<S, D>
4646
sum
4747
}
4848

49-
/// Returns the [`arithmetic mean`] x̅ of all elements in the array:
49+
/// Returns the [arithmetic mean] x̅ of all elements in the array:
5050
///
5151
/// ```text
5252
/// 1 n
@@ -58,7 +58,7 @@ impl<A, S, D> ArrayBase<S, D>
5858
///
5959
/// **Panics** if `A::from_usize()` fails to convert the number of elements in the array.
6060
///
61-
/// [`arithmetic mean`]: https://en.wikipedia.org/wiki/Arithmetic_mean
61+
/// [arithmetic mean]: https://en.wikipedia.org/wiki/Arithmetic_mean
6262
pub fn mean(&self) -> Option<A>
6363
where
6464
A: Clone + FromPrimitive + Add<Output=A> + Div<Output=A> + Zero

0 commit comments

Comments
 (0)