summaryrefslogtreecommitdiffhomepage
path: root/es-es/c-es.html.markdown
diff options
context:
space:
mode:
authorwikibook <dylee@wikibook.kr>2013-08-20 10:46:10 +0900
committerwikibook <dylee@wikibook.kr>2013-08-20 10:46:10 +0900
commit276d73bdd3b1e43c471a86191dcda87c7e3c5241 (patch)
treee13b9640f2a54cb4378eef1c6ef70c08ae8b2175 /es-es/c-es.html.markdown
parent4e7f0ce330914cded8be937b8e5f1700350623d2 (diff)
parentf33dea8b83bf64ecde36337a5e02cae77f5210de (diff)
fix typo in Java tutorial
Diffstat (limited to 'es-es/c-es.html.markdown')
-rw-r--r--es-es/c-es.html.markdown2
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);