From 89dcd1bc92cba55ad8637c2ecfc006e8309a01b4 Mon Sep 17 00:00:00 2001 From: zymon Date: Sun, 9 Oct 2022 14:05:53 +0200 Subject: [PATCH] Function name correction + new dev repo link --- Project.toml | 2 +- README.md | 2 +- src/STFT.jl | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Project.toml b/Project.toml index ca202e7..161c00c 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "STFT" uuid = "58bb99bf-048b-48b7-93e7-1cbf3ee61509" authors = ["Szymon M. Woźniak"] -version = "1.0.0" +version = "1.0.1" [deps] FFTW = "7a1cc6ca-52ef-59f5-83cd-3a7055c09341" diff --git a/README.md b/README.md index 5bedbb0..a182394 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ To install this package from General registry, use the following command in Juli ``` Alternatively, directly via repository: ```julia -pkg> add https://github.com/s-zymon/STFT.jl +pkg> add https://git.sr.ht/~zymon/STFT.jl ``` diff --git a/src/STFT.jl b/src/STFT.jl index 093e7f7..778070d 100644 --- a/src/STFT.jl +++ b/src/STFT.jl @@ -211,7 +211,7 @@ xr = istft(X, w, L) # Synthesis function synthesis() end "$doc_synthesis" -isftf(X, w, L=0, N=length(w)) = synthesis(X, w, L, N) +istft(X, w, L=0, N=length(w)) = synthesis(X, w, L, N) function synthesis( X::AbstractMatrix{<:Complex},