diff --git a/docs/en/docs/async.md b/docs/en/docs/async.md index 44169c61f..756909e98 100644 --- a/docs/en/docs/async.md +++ b/docs/en/docs/async.md @@ -265,7 +265,7 @@ To see how to achieve this parallelism in production see the section about [Depl ## `async` and `await` -Modern versions of python have a very intuitive way to define asynchronous code. This makes it look just like normal "sequential" code and do the "awaiting" for you at the right moments. +Modern versions of Python have a very intuitive way to define asynchronous code. This makes it look just like normal "sequential" code and do the "awaiting" for you at the right moments. When there is an operation that will require waiting before giving the results and has support for these new Python features, you can code it like: @@ -336,7 +336,7 @@ But before that, handling asynchronous code was quite more complex and difficult In previous versions of Python, you could have used threads or Gevent. But the code is way more complex to understand, debug, and think about. -In previous versions of NodeJS / Browser JavaScript, you would have used "callbacks". Which lead to callback hell. +In previous versions of NodeJS / Browser JavaScript, you would have used "callbacks". Which leads to callback hell. ## Coroutines diff --git a/docs/es/docs/async.md b/docs/es/docs/async.md index 609fc4866..99e2f8b26 100644 --- a/docs/es/docs/async.md +++ b/docs/es/docs/async.md @@ -265,7 +265,7 @@ Para ver cómo lograr este paralelismo en producción, consulta la sección sobr ## `async` y `await` -Las versiones modernas de python tienen una forma muy intuitiva de definir código asíncrono. Esto hace que se vea como un código "secuencial" normal y que haga la "espera" por ti en los momentos correctos. +Las versiones modernas de Python tienen una forma muy intuitiva de definir código asíncrono. Esto hace que se vea como un código "secuencial" normal y que haga la "espera" por ti en los momentos correctos. Cuando hay una operación que requerirá esperar antes de dar los resultados y tiene soporte para estas nuevas características de Python, puedes programarlo como: