From 4d15c0aa38de5606dde7ae39074ae557dea8fb97 Mon Sep 17 00:00:00 2001 From: per1234 Date: Tue, 3 Oct 2023 02:31:19 -0700 Subject: [PATCH] Fix misspelled word in sketch comment The codespell tool is used for automated detection of common misspellings in the files of this project. A new release of codespell includes an expansion of its misspellings dictionary. The new version was able to catch a previously undetected typo in a sketch comment, which is hereby corrected. --- .../ADC_Multi_Channel_Dynamic/ADC_Multi_Channel_Dynamic.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/Advanced/ADC_Multi_Channel_Dynamic/ADC_Multi_Channel_Dynamic.ino b/examples/Advanced/ADC_Multi_Channel_Dynamic/ADC_Multi_Channel_Dynamic.ino index c208289..488b072 100644 --- a/examples/Advanced/ADC_Multi_Channel_Dynamic/ADC_Multi_Channel_Dynamic.ino +++ b/examples/Advanced/ADC_Multi_Channel_Dynamic/ADC_Multi_Channel_Dynamic.ino @@ -34,7 +34,7 @@ void queryPins() { } } while (!(c == '\n' || num_active_pins >= AN_MAX_ADC_CHANNELS)); - // No (valid) input? Repeat previous measurement cylce + // No (valid) input? Repeat previous measurement cycle if (!num_active_pins) { num_active_pins = old_num_active_pins; }