Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FastLED/FastLED.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene8388608 <zhenya.pavlenko.2004@mail.ru>2022-04-05 00:53:07 +0300
committerGitHub <noreply@github.com>2022-04-05 00:53:07 +0300
commit34d9061317aa83595488ddb3cc8f6913e07367cf (patch)
tree7dfef826ba925365a2f4fbf95fed01687ae7b42d
parent8e5e62c299d5d99c06b3af65107d377c27ea2075 (diff)
fix typo
-rw-r--r--src/lib8tion/math8.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib8tion/math8.h b/src/lib8tion/math8.h
index 6dd424f0..19a5ad77 100644
--- a/src/lib8tion/math8.h
+++ b/src/lib8tion/math8.h
@@ -53,7 +53,7 @@ LIB8STATIC_ALWAYS_INLINE uint8_t qadd8( uint8_t i, uint8_t j)
/// Add one byte to another, saturating at 0x7F and -0x80
/// @param i - first byte to add
/// @param j - second byte to add
-/// @returns the sum of i & j, capped at 0xFF and -0x80
+/// @returns the sum of i & j, capped at 0x7F and -0x80
LIB8STATIC_ALWAYS_INLINE int8_t qadd7( int8_t i, int8_t j)
{
#if QADD7_C == 1