From 76d24fae744a439747dfe1f392262b5374688819 Mon Sep 17 00:00:00 2001 From: Animesh Srivastava Date: Fri, 19 Jul 2019 00:00:11 +0530 Subject: [PATCH] Update unsignedChar.adoc --- Language/Variables/Data Types/unsignedChar.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Language/Variables/Data Types/unsignedChar.adoc b/Language/Variables/Data Types/unsignedChar.adoc index 9225c34af..fe554cd43 100644 --- a/Language/Variables/Data Types/unsignedChar.adoc +++ b/Language/Variables/Data Types/unsignedChar.adoc @@ -12,11 +12,11 @@ subCategories: [ "Data Types" ] [float] === Description -An unsigned data type that occupies 1 byte of memory. Same as the link:../byte[byte] datatype. +An unsigned data type that occupies 1 byte of memory. Same as the `link:../byte[byte]` datatype. The unsigned char datatype encodes numbers from 0 to 255. -For consistency of Arduino programming style, the byte data type is to be preferred. +For consistency of Arduino programming style, the link:../byte[`byte`] data type is to be preferred. [%hardbreaks]