summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAdam Bard <github@adambard.com>2013-09-08 21:46:08 -0700
committerAdam Bard <github@adambard.com>2013-09-08 21:46:08 -0700
commitee8c021765391f23040110a8150b44ead0c722db (patch)
treec67314e72c9605999e19a7eb9638cebe27c977c4
parent67becff14653680c767f343448bebaeaab58e6a5 (diff)
parent65d2460cd760812c0a0e7a08771d859f13eac3af (diff)
Merge pull request #312 from nathan-hoad/master
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..12f862bc 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 retrieve 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.