Skip to content

Commit 7b05c15

Browse files
committed
Correction for Datatype Conversion example
1 parent 5cdce6a commit 7b05c15

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

content/examples/Basics/Data/DatatypeConversion/DatatypeConversion.pde

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ textFont(createFont("SourceCodePro-Regular.ttf",24));
1616
char c; // Chars are used for storing alphanumeric symbols
1717
float f; // Floats are decimal numbers
1818
int i; // Integers are values between 2,147,483,647 and -2147483648
19-
byte b; // Bytes are values between -128 and 128
19+
byte b; // Bytes are values between -128 and 127
2020

2121
c = 'A';
2222
f = float(c); // Sets f = 65.0

0 commit comments

Comments
 (0)