From 099b855cc23b602c038de10aaec6767ec265e22c Mon Sep 17 00:00:00 2001 From: Luis Lomeli Date: Tue, 13 Aug 2019 12:57:11 -0700 Subject: [PATCH] Fixed title on index.md (#32073) For some reason "threads" was translated as "trapos" in the title, when it should be "hilos" (which it was for the rest of the document) --- guide/spanish/computer-science/threads/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guide/spanish/computer-science/threads/index.md b/guide/spanish/computer-science/threads/index.md index cfbf9e5ad8..f09de1e3c8 100644 --- a/guide/spanish/computer-science/threads/index.md +++ b/guide/spanish/computer-science/threads/index.md @@ -1,8 +1,8 @@ --- title: Threads -localeTitle: Trapos +localeTitle: Hilos --- -## Trapos +## Hilos Una secuencia de instrucciones del programa dada al sistema operativo para ejecutar. Es la secuencia síncrona más pequeña que se puede ejecutar. Al ser sincrónicas, las instrucciones en un hilo son lineales y se ejecutan una tras otra. Si un programa tiene varios subprocesos, el programa en su conjunto puede ser asíncrono, ya que estos subprocesos ejecutan sus propias instrucciones de forma independiente entre sí (simultáneamente). @@ -37,4 +37,4 @@ import threading #### Más información: * [Hilos (Wikipedia)](https://en.wikipedia.org/wiki/Thread_(computing)) -* [Entendiendo multiproceso](http://www.nakov.com/inetjava/lectures/part-1-sockets/InetJava-1.3-Multithreading.html) \ No newline at end of file +* [Entendiendo multiproceso](http://www.nakov.com/inetjava/lectures/part-1-sockets/InetJava-1.3-Multithreading.html)