summaryrefslogtreecommitdiffhomepage
path: root/c.html.markdown
diff options
context:
space:
mode:
authorGeoff Liu <cangming.liu@gmail.com>2014-11-05 13:14:56 -0700
committerGeoff Liu <cangming.liu@gmail.com>2014-11-05 13:14:56 -0700
commit459967e44660a064b4f5786a3932473e5fe7d2ff (patch)
tree258eaece4158ec1ba5c945d8a2f808dfab41fa24 /c.html.markdown
parent1d665b9c0734ac606c2f8fa8b71c22c1d7ac377b (diff)
parent17a0d9c96606dfd4fd1c014cb7d037c56bfd1f19 (diff)
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'c.html.markdown')
-rw-r--r--c.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/c.html.markdown b/c.html.markdown
index 6daabe94..874197d3 100644
--- a/c.html.markdown
+++ b/c.html.markdown
@@ -84,7 +84,7 @@ int main() {
// doubles are usually 64-bit floating-point numbers
double x_double = 0.0; // real numbers without any suffix are doubles
- // Integral types may be unsigned.
+ // integer types may be unsigned (only positive)
unsigned short ux_short;
unsigned int ux_int;
unsigned long long ux_long_long;