From 88250d663d5288a7f643ffca2f2c999190f3d4ae Mon Sep 17 00:00:00 2001 From: LeafyLi Date: Sun, 12 Jul 2020 14:45:00 -0400 Subject: [PATCH] Change misleading wording --- src/ch03-02-data-types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch03-02-data-types.md b/src/ch03-02-data-types.md index c85413b23b..f76d54bd59 100644 --- a/src/ch03-02-data-types.md +++ b/src/ch03-02-data-types.md @@ -55,7 +55,7 @@ value. Each variant can be either signed or unsigned and has an explicit size. *Signed* and *unsigned* refer to whether it’s possible for the number to be -negative or positive—in other words, whether the number needs to have a sign +negative—in other words, whether the number needs to have a sign with it (signed) or whether it will only ever be positive and can therefore be represented without a sign (unsigned). It’s like writing numbers on paper: when the sign matters, a number is shown with a plus sign or a minus sign; however,