File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 38
38
//! - Higher order operations and arithmetic are performant
39
39
//! - Array views can be used to slice and mutate any `[T]` data using
40
40
//! `ArrayView::from` and `ArrayViewMut::from`.
41
- //! - `Zip` for lock step function application across two or more arrays or other
42
- //! item producers (`NdProducer` trait).
41
+ //! - [ `Zip`](struct.Zip.html) for lock step function application across two or more arrays or other
42
+ //! item producers ([ `NdProducer`](trait.NdProducer.html) trait).
43
43
//!
44
44
//! ## Crate Status
45
45
//!
Original file line number Diff line number Diff line change @@ -128,7 +128,8 @@ where
128
128
/// for example an array view, mutable array view or an iterator
129
129
/// that yields chunks.
130
130
///
131
- /// Producers are used as a arguments to `Zip` and `azip!()`.
131
+ /// Producers are used as a arguments to [`Zip`](struct.Zip.html) and
132
+ /// [`azip!()`](macro.azip.html).
132
133
///
133
134
/// # Comparison to `IntoIterator`
134
135
///
You can’t perform that action at this time.
0 commit comments