From 432405b3c27cdc85b57f7c99907959b24bde5356 Mon Sep 17 00:00:00 2001 From: Vladimir Kotal Date: Mon, 13 May 2024 08:32:08 +0200 Subject: [PATCH] fix typo --- modules/bitwise-operations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/bitwise-operations.md b/modules/bitwise-operations.md index 51ae73a5..7a58f5ec 100644 --- a/modules/bitwise-operations.md +++ b/modules/bitwise-operations.md @@ -62,7 +62,7 @@ lights = lights & ~LIGHT_RED; // turn off red light ``` Another common case is to use an integer type to store multiple kinds of -information, with mask to extract the parts. Here, a `ungisned short` type +information, with mask to extract the parts. Here, a `unsigned short` type stores the byte value and associated flags: ```C