Skip to content

Commit 727ebfa

Browse files
committed
DOC: Add links to a few items close to the top of crate docs
1 parent 235838a commit 727ebfa

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@
3838
//! - Higher order operations and arithmetic are performant
3939
//! - Array views can be used to slice and mutate any `[T]` data using
4040
//! `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).
4343
//!
4444
//! ## Crate Status
4545
//!

src/zip/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,8 @@ where
128128
/// for example an array view, mutable array view or an iterator
129129
/// that yields chunks.
130130
///
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).
132133
///
133134
/// # Comparison to `IntoIterator`
134135
///

0 commit comments

Comments
 (0)