diff options
author | Adam Bard <github@adambard.com> | 2013-08-16 08:46:36 -0700 |
---|---|---|
committer | Adam Bard <github@adambard.com> | 2013-08-16 08:46:36 -0700 |
commit | fc0ec0b55f31c9ceb31c76d27597cdc110e3c942 (patch) | |
tree | b9a0c879642a6e4de04ae5de521d04dd55ad03f7 /es-es/c-es.html.markdown | |
parent | 4d1c25247184ca087afbf01145a2b2caebce5128 (diff) | |
parent | cf5730cebc5756e5b5cb18e93fe53092c3d6a036 (diff) |
Merge pull request #233 from y-gagar1n/master
Fixed typo in C spanish version adressed in #230
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); |