diff options
author | Adam <adam@adambard.com> | 2013-08-16 08:51:16 -0700 |
---|---|---|
committer | Adam <adam@adambard.com> | 2013-08-16 08:51:16 -0700 |
commit | 5be20756e046175bf04aea5a7a2c744b807ed384 (patch) | |
tree | 16f9f843ceb9d674a6c641926beb58e1b60cf9d4 /es-es/c-es.html.markdown | |
parent | fde1bab1f0d598a9f76e43cc714dcc13be3a0ba7 (diff) | |
parent | 9a9b5a31e079c635fe4c5afc1127f88fbad091f3 (diff) |
Merge branch 'master' of https://github.com/adambard/learnxinyminutes-docs
Diffstat (limited to 'es-es/c-es.html.markdown')
-rw-r--r-- | es-es/c-es.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/es-es/c-es.html.markdown b/es-es/c-es.html.markdown index b109f761..5d3aae0c 100644 --- a/es-es/c-es.html.markdown +++ b/es-es/c-es.html.markdown @@ -284,7 +284,7 @@ for (xx=0; xx<20; xx++) { // impredecibles printf("%d\n", *(my_ptr + 21)); // => Prints who-knows-what? -// Cuando hallas acabado con el bloque de memoría malloc, necesitas +// Cuando hayas acabado con el bloque de memoría malloc, necesitas // liberarlo o sino nadie más podrá usarlo hasta que tu programa se cierre free(my_ptr); |