diff options
author | Nathan Hoad <nathan@getoffmalawn.com> | 2013-09-05 07:13:28 +1000 |
---|---|---|
committer | Nathan Hoad <nathan@getoffmalawn.com> | 2013-09-05 07:13:28 +1000 |
commit | 65d2460cd760812c0a0e7a08771d859f13eac3af (patch) | |
tree | 2610d65f1859bd7a9fa006ea2d3ec8d7a66eb9a1 | |
parent | f6c800dd2aac61c69563a6d51b786928a1d6b329 (diff) |
Fixed typo in c.html.markdown that I introduced
-rw-r--r-- | c.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/c.html.markdown b/c.html.markdown index 3ec4aeef..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 retrievve 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. |