summaryrefslogtreecommitdiffhomepage
path: root/c.html.markdown
diff options
context:
space:
mode:
authorAdam <adam@adambard.com>2013-09-08 21:52:54 -0700
committerAdam <adam@adambard.com>2013-09-08 21:52:54 -0700
commit6172fee1a4a44d53648a26cd7764de9fcea46313 (patch)
treebfb1264276f5d60713e2f9a760672076115faf51 /c.html.markdown
parenta933d419e07fd8af6effa89200b581e904c61679 (diff)
parent599ed0df3012ae578281dd92afc5a48891f56810 (diff)
Merge branch 'master' of https://github.com/adambard/learnxinyminutes-docs
Diffstat (limited to '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.