Skip to content

Commit 1acd421

Browse files
committed
Doc alias more
1 parent 2d3fcc3 commit 1acd421

File tree

5 files changed

+5
-1
lines changed

5 files changed

+5
-1
lines changed

src/analysis/mscohere.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ where
1515
N: Maybe<usize>,
1616
S: Maybe<bool>
1717
{
18-
#[doc(alias = "cohere")]
18+
#[doc(alias = "cohere", alias = "coherence")]
1919
fn mscohere<O, FS, CONF, DT, F>(
2020
self,
2121
y: YY,

src/analysis/pwelch.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ where
3333
WW::Mapped<Complex<T::Real>>: StaticMaybe<WW::Mapped<Complex<T::Real>>>,
3434
WW::Mapped<T::Real>: StaticMaybe<WW::Mapped<T::Real>>
3535
{
36+
#[doc(alias = "welch")]
3637
fn pwelch<O, FS, CONF, DT, XPOW, CROSS, TRANS, COHER, YPOW, CONFF, F>(
3738
self,
3839
y: YY,

src/analysis/real_pwelch.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ where
1717
<YY::MaybeSome as StaticMaybe<YY::Some>>::Maybe<WW::Mapped<T>>: StaticMaybe<<YY::MaybeSome as StaticMaybe<YY::Some>>::Maybe<WW::Mapped<T>>>,
1818
<YY::MaybeSome as StaticMaybe<YY::Some>>::Maybe<WW::Mapped<Complex<T>>>: StaticMaybe<<YY::MaybeSome as StaticMaybe<YY::Some>>::Maybe<WW::Mapped<Complex<T>>>>,
1919
{
20+
#[doc(alias = "real_welch")]
2021
fn real_pwelch<O, FS, CONF, DT, XPOW, CROSS, TRANS, COHER, YPOW, CONFF, F>(
2122
self,
2223
y: YY,

src/analysis/real_specgram.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ where
1616
W: ComplexFloat<Real = T::Real> + Into<Complex<T::Real>>,
1717
WW: MaybeList<W>
1818
{
19+
#[doc(alias = "real_spectrogram")]
1920
fn real_specgram<FS>(
2021
&self,
2122
width: N,

src/analysis/specgram.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ where
1616
W: ComplexFloat<Real = T::Real> + Into<Complex<T::Real>>,
1717
WW: MaybeList<W>
1818
{
19+
#[doc(alias = "spectrogram")]
1920
fn specgram<FS>(
2021
&self,
2122
width: N,

0 commit comments

Comments
 (0)