diff options
author | Adam Bard <github@adambard.com> | 2013-06-28 19:55:34 -0700 |
---|---|---|
committer | Adam Bard <github@adambard.com> | 2013-06-28 19:55:34 -0700 |
commit | d1e222727a612daffdda27394265d1c302958406 (patch) | |
tree | b57257a64f043c2dacda6183772f8519e2fe6696 /c.html.markdown | |
parent | 58d8059fce1d2522f9e33c651ddbc7259b2c8e78 (diff) | |
parent | 30e0d68cd9d3ad2fe35bb895feb1388539a91e5a (diff) |
Merge pull request #33 from esneider/patch-1
Fix precision typo with C integer types
Diffstat (limited to 'c.html.markdown')
-rw-r--r-- | c.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/c.html.markdown b/c.html.markdown index 36bd07fd..c23e8d2c 100644 --- a/c.html.markdown +++ b/c.html.markdown @@ -50,8 +50,8 @@ short x_short = 0; char x_char = 0; char y_char = 'y'; // Char literals are quoted with '' -long x_long = 0; // Still 32 bytes for historical reasons -long long x_long_long = 0; // Guaranteed to be at least 64 bytes +long x_long = 0; // Still 32 bits for historical reasons +long long x_long_long = 0; // Guaranteed to be at least 64 bits // 32-bit floating-point decimal float x_float = 0.0; |