diff options
author | Geoff Liu <cangming.liu@gmail.com> | 2015-01-30 15:00:16 -0700 |
---|---|---|
committer | Geoff Liu <cangming.liu@gmail.com> | 2015-01-30 15:00:16 -0700 |
commit | bfac539c9fe8aaf50e26fb4a97b24ad805ac293d (patch) | |
tree | c3af1247f04ca7877fe859fd7d94edbca5acab1d /c.html.markdown | |
parent | 177adaa5a545670a31ae674906c660f6f462d679 (diff) | |
parent | 21fa7d7e391f4d03d5f527043fec73fd7260334a (diff) |
Merge pull request #946 from devinmcginty/patch-1
Change explanation of unsigned types
Diffstat (limited to 'c.html.markdown')
-rw-r--r-- | c.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/c.html.markdown b/c.html.markdown index 7670824a..1696d28f 100644 --- a/c.html.markdown +++ b/c.html.markdown @@ -85,7 +85,7 @@ int main() { // doubles are usually 64-bit floating-point numbers double x_double = 0.0; // real numbers without any suffix are doubles - // integer types may be unsigned (only positive) + // integer types may be unsigned (greater than or equal to zero) unsigned short ux_short; unsigned int ux_int; unsigned long long ux_long_long; |