summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNathan Hoad <nathan@getoffmalawn.com>2013-09-05 01:29:59 +1000
committerNathan Hoad <nathan@getoffmalawn.com>2013-09-05 01:29:59 +1000
commitf6c800dd2aac61c69563a6d51b786928a1d6b329 (patch)
tree2eeab8cd1d14bd976d292d172972ece59f3b18b9
parent412b312c45ccb8922f92c4ee364819fb0add7734 (diff)
Fixed typo in 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 3acf1a4d..3ec4aeef 100644
--- a/c.html.markdown
+++ b/c.html.markdown
@@ -294,7 +294,7 @@ int main() {
printf("%zu, %zu\n", sizeof(px), sizeof(not_a_pointer));
// => Prints "8, 4" on a typical 64-bit system
- // To retreive the value at the address a pointer is pointing to,
+ // To retrievve the value at the address a pointer is pointing to,
// put * in front to de-reference it.
// Note: yes, it may be confusing that '*' is used for _both_ declaring a
// pointer and dereferencing it.