From f3cab4b879e90c6dc2e94179cc768f1c62f6a00c Mon Sep 17 00:00:00 2001 From: David Honour Date: Wed, 5 Jun 2019 16:11:49 +0100 Subject: [PATCH] Fix doc typo --- src/window.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/window.rs b/src/window.rs index 12aec871..87040257 100644 --- a/src/window.rs +++ b/src/window.rs @@ -13,7 +13,7 @@ pub trait Type { fn at_phase(phase: S) -> S; } -/// A type of window function, also known as teh "raised cosine window". +/// A type of window function, also known as the "raised cosine window". /// /// [Wiki entry](https://en.wikipedia.org/wiki/Window_function#Hann_.28Hanning.29_window). #[derive(Clone, Copy, Debug, PartialEq, Eq)]