summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAdam Bard <github@adambard.com>2013-08-05 12:11:00 -0700
committerAdam Bard <github@adambard.com>2013-08-05 12:11:00 -0700
commit01f0e59980ceab7f16cd5571692e8913e5d9f5c2 (patch)
treebe8c43b99d82b80572a521523e8d0927dc646317
parent071e433dd3281c1eb25a61003782eb4ac6cbb7df (diff)
parente037df9c91b303ce21847dd5e8fa3bf8b9376aed (diff)
Merge pull request #162 from misfo/patch-1
C: Signed/unsigned clarification
-rw-r--r--c.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/c.html.markdown b/c.html.markdown
index b5286f70..d243b19d 100644
--- a/c.html.markdown
+++ b/c.html.markdown
@@ -70,7 +70,7 @@ double x_double = 0.0;
// Integral types may be unsigned. This means they can't be negative, but
// the maximum value of an unsigned variable is greater than the maximum
-// value of the same size.
+// signed value of the same size.
unsigned char ux_char;
unsigned short ux_short;
unsigned int ux_int;