diff --git a/exercises/01-Hello-World/README.es.md b/exercises/01-Hello-World/README.es.md
index ec1c29ff..d11c6441 100644
--- a/exercises/01-Hello-World/README.es.md
+++ b/exercises/01-Hello-World/README.es.md
@@ -6,7 +6,7 @@ tutorial: "https://www.youtube.com/watch?v=rbtHLA813pU"
CSS trata sobre estilos (styles). Para aplicar estilos, siempre debes seguir estos pasos:
-1. Lee el HTML y elije qué elemento deseas decorar o aplicar estilos.
+1. Lee el HTML y elige qué elemento deseas decorar o aplicarle estilos.
2. Programáticamente selecciona el elemento que deseas decorar con los selectores de CSS.
@@ -26,7 +26,7 @@ Mira este ejemplo:
```
Tenemos un enlace de HTML `` que lleva a las personas a google.com cuando se hace clic.
-Usamos CSS para selectionar todas las etiquetas `` y luego hacerlas `pink`.
+Usamos CSS para seleccionar todas las etiquetas `` y luego hacerlas `pink`.
## 📝 Instrucciones
@@ -36,4 +36,4 @@ Usamos CSS para selectionar todas las etiquetas `` y luego hacerlas `pink`.
Debería verse así:
-
\ No newline at end of file
+
diff --git a/exercises/01-Hello-World/README.md b/exercises/01-Hello-World/README.md
index 35efc390..386d19e0 100644
--- a/exercises/01-Hello-World/README.md
+++ b/exercises/01-Hello-World/README.md
@@ -3,11 +3,11 @@ tutorial: "https://www.youtube.com/watch?v=rbtHLA813pU"
---
# `01` Hello World in CSS
-CSS is about styles. To apply styles you always have to follow this steps:
+CSS is about styles. To apply styles you always have to follow these steps:
-1. Read the HTML and pick what element do you want to decorate or apply styles to.
+1. Read the HTML and pick what element you want to decorate or apply styles to.
-2. Programatically select the element you want to style using CSS Selectors.
+2. Programmatically select the element you want to style using CSS Selectors.
3. Write the styling that you want by using CSS rules.
@@ -25,7 +25,7 @@ Look at this example:
```
We have an HTML anchor `` that takes people to google.com when clicked.
-We use CSS to tell (selected) all the anchor tags and make then pink.
+We use CSS to select all the anchor tags and make them pink.
## 📝 Instructions:
diff --git a/exercises/01-Hello-World/test.js b/exercises/01-Hello-World/test.js
index fbe19bf5..479b0469 100644
--- a/exercises/01-Hello-World/test.js
+++ b/exercises/01-Hello-World/test.js
@@ -28,7 +28,7 @@ test("There should be a target attribute pointing to '_blank'", ()=>{
expect(target).toBe("_blank");
})
-test("The anchor tag should not contains any inline style", ()=>{
+test("The anchor tag should not contain any inline style", ()=>{
let emptyBodyInlineStyle = {};
expect(a.style._values).toEqual(emptyBodyInlineStyle);
-});
\ No newline at end of file
+});