From d755ab24be396b4808ed7d36e2e78b41f5f3f009 Mon Sep 17 00:00:00 2001 From: Nicholas Obert Date: Tue, 13 Aug 2024 09:20:39 +0200 Subject: [PATCH] Corrected misspelling in tutorial.rst Corrected "rage" into "range" --- docs/tutorial.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial.rst b/docs/tutorial.rst index b6ce222..c7ba415 100644 --- a/docs/tutorial.rst +++ b/docs/tutorial.rst @@ -73,7 +73,7 @@ columns since each column contains one channel of audio data. They must also have a signed 16-bit integer dtype and the sample amplitude values must consequently fall in the range of -32768 to 32767. Here is an example of a simple way to 'normalize' -the audio (making it cover the whole amplitude rage but not exceeding it):: +the audio (making it cover the whole amplitude range but not exceeding it):: audio_array *= 32767 / max(abs(audio_array))