From 6b270ad74f33bdaebb95282edd80883ac9b9d47f Mon Sep 17 00:00:00 2001 From: Jens True Date: Sun, 2 Aug 2020 14:44:30 +0200 Subject: [PATCH] Typo --- content/post/bit-magic/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/post/bit-magic/index.md b/content/post/bit-magic/index.md index 1a669c4..bd240b1 100644 --- a/content/post/bit-magic/index.md +++ b/content/post/bit-magic/index.md @@ -3,7 +3,7 @@ title: "Bit magic in C (and C++)" subtitle: "" -summary: "" +summary: "Tips and trick for embedded C/C++" authors: [] tags: [] categories: [] @@ -76,7 +76,7 @@ output = input << 3; // Multiply by 8 output = (0b1 << X) -1; ``` -# Miccelean +# Miscellaneous ```c // Check if number is ODD if( (num & 1) == 1) {};