summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorWes Turner <wes.turner@gmail.com>2014-11-02 04:52:31 -0600
committerWes Turner <wes.turner@gmail.com>2014-11-02 04:52:31 -0600
commit56d86a244e93741535d6c5212f0378c105179745 (patch)
tree9be086fb38865068797ed3a2ce2d53d731cfc939
parent24a4426dd0f02468810b475d17bb6aed307e178a (diff)
[c/en] Typo: integral -> integer
-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;