From 37d7a567817956cf7ce5d4685d1d3af6030c64af Mon Sep 17 00:00:00 2001 From: kaz saita Date: Sun, 29 Jun 2025 12:33:31 +0900 Subject: [PATCH 1/2] fix filename typo --- LICENCE.LPGL => LICENCE.LGPL | 0 LICENSE.TXT | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename LICENCE.LPGL => LICENCE.LGPL (100%) diff --git a/LICENCE.LPGL b/LICENCE.LGPL similarity index 100% rename from LICENCE.LPGL rename to LICENCE.LGPL diff --git a/LICENSE.TXT b/LICENSE.TXT index aaad592aa..1b883e275 100644 --- a/LICENSE.TXT +++ b/LICENSE.TXT @@ -2,6 +2,6 @@ Mozzi - Sound Synthesis Library for Arduino Copyright 2012-2024 Tim Barrass and the Mozzi Team -Mozzi is licensed under the GNU Lesser General Public Licence (LGPL) Version 2.1 or later. A full copy of this licence is included in these sources as LICENCE.LPGL. +Mozzi is licensed under the GNU Lesser General Public Licence (LGPL) Version 2.1 or later. A full copy of this licence is included in these sources as LICENCE.LGPL. Note that some of the provided code examples show the use of separate third-party libraries, which may come with different licences. From 08b80a21537d629d1ddded388820d917a0eb3160 Mon Sep 17 00:00:00 2001 From: kaz saita Date: Wed, 9 Jul 2025 20:41:24 +0900 Subject: [PATCH 2/2] fix typo in documentation --- config/mozzi_config_documentation.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/mozzi_config_documentation.h b/config/mozzi_config_documentation.h index fc5b1c9f0..032c6f29e 100644 --- a/config/mozzi_config_documentation.h +++ b/config/mozzi_config_documentation.h @@ -119,7 +119,7 @@ * may only be useful for relatively simple sketches. The increased frequency response can also make * unwanted artefacts of low resolution synthesis calculations more apparent, so it's not always a bonus. * - * It is highly recommended to keep the audio rate a power of two (16384, 32678, 64536, etc.), as some internal calculations can be highly be optimised for speed, this way. + * It is highly recommended to keep the audio rate a power of two (16384, 32678, 65536, etc.), as some internal calculations can be highly be optimised for speed, this way. * * @note * For compatibility reasons, the option MOZZI_AUDIO_RATE is automatically set to the same value as this option, and you will find some uses of that in old (pre Mozzi 2.0) code examples.