Skip to content

Commit 0e00a97

Browse files
Merge pull request #53 from andrewcsmith/fix-doc-links-and-root-descriptions
Fix doc links and root descriptions
2 parents 9c4e954 + e762737 commit 0e00a97

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

src/frame.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! Use the [**Frame**](./trait.Frame.html) trait to remain generic over the number of channels at
1+
//! Use the Frame trait to remain generic over the number of channels at
22
//! a single discrete moment in time.
33
//!
44
//! Implementations are provided for all fixed-size arrays up to 32 elements in length.

src/interpolate.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
//! The Interpolate module allows for conversion between various sample rates.
2+
13
use {Duplex, Frame, Sample, VecDeque};
24
use core::f64::consts::PI;
35
use ops::f64::{sin, cos};

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//! - Use the [**slice** module](./slice/index.html) for working with slices of **Samples** and **Frames**.
77
//! - See the [**conv** module](./conv/index.html) for fast conversions between slices, frames and samples.
88
//! - See the [**types** module](./types/index.html) for provided custom sample types.
9-
//! - See the [**rate** module](./rate/index.html) for sample rate conversion and scaling.
9+
//! - See the [**interpolate** module](./interpolate/index.html) for sample rate conversion and scaling.
1010
1111
#![recursion_limit="512"]
1212
#![cfg_attr(not(feature = "std"), no_std)]

src/signal.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
//! Use the [**Signal** trait](./trait.Signal.html) for working with **Iterator**s that yield
2-
//! **Frame**s. To complement the **Iterator** trait, **Signal** provides methods for adding,
3-
//! scaling, offsetting, multiplying, clipping and generating frame iterators and more.
1+
//! Use the **Signal** trait for working with **Iterator**s that yield **Frame**s. To complement
2+
//! the **Iterator** trait, **Signal** provides methods for adding, scaling, offsetting,
3+
//! multiplying, clipping and generating frame iterators and more.
44
//!
55
//! You may also find a series of **Signal** source functions, including:
66
//!

src/window.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
//! Module for windowing over a batch of Frames. Includes default Hanning and Rectangle window
2+
//! types.
3+
14
use {FloatSample, Sample};
25
use core;
36
use core::marker::PhantomData;

0 commit comments

Comments
 (0)