From e825490c9cea447260aeac56f640cefaa2cc12ca Mon Sep 17 00:00:00 2001 From: jho1213gt Date: Tue, 28 Jun 2022 09:36:36 -0600 Subject: [PATCH] Initial Commit --- content/learn/03.programming/06.memory-guide/memory-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/learn/03.programming/06.memory-guide/memory-guide.md b/content/learn/03.programming/06.memory-guide/memory-guide.md index 9ca2889dd2..9d2d07098c 100644 --- a/content/learn/03.programming/06.memory-guide/memory-guide.md +++ b/content/learn/03.programming/06.memory-guide/memory-guide.md @@ -413,7 +413,7 @@ The following table shows basic value data types in Arduino: | `boolean` | 1 | Limited to logic true and false | | `char` | 1 | -128 to 127 | | `unsigned char` | 1 | 0 to 255 | -| `byte` | 1 | o to 255 | +| `byte` | 1 | 0 to 255 | | `int` | 2 | -32,768 to 32,767 | | `unsigned int` | 2 | 0 to 65,535 | | `word` | 2 | 0 to 65,535 |