From bf2f4e35ef9ab81d7af83401f095e1962f77daed Mon Sep 17 00:00:00 2001
From: Jose Mora <109150320+josemoracard@users.noreply.github.com>
Date: Wed, 22 Mar 2023 16:41:07 +0100
Subject: [PATCH 1/2] Update README.md
---
exercises/01.2-Your-First-Style/README.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/exercises/01.2-Your-First-Style/README.md b/exercises/01.2-Your-First-Style/README.md
index f66e2d25..d6a9b3fc 100644
--- a/exercises/01.2-Your-First-Style/README.md
+++ b/exercises/01.2-Your-First-Style/README.md
@@ -6,7 +6,7 @@ tutorial: "https://www.youtube.com/watch?v=8b12AFC6bWs"
When doing CSS, the idea is to apply `css rules` to your `html elements`, you always have to select the element first, and then specify what rules you want to apply to it:
-For example, this is the code if you want to make all my website anchors (` tag's`) blue:
+For example, this is the code if you want to make all your website anchors (`` tags) blue:
```css
a {
@@ -16,6 +16,6 @@ a {
## 📝 Instructions:
-1. Right now there is a style being applied that is responsable of making the anchor `red`.
+1. Right now there is a style being applied that is responsible for making the anchor `red`.
2. Change the style to make your anchor look `yellow`.
From 115a718a5cc83aa915d070f78f35eb8d6a14eb3d Mon Sep 17 00:00:00 2001
From: Jose Mora <109150320+josemoracard@users.noreply.github.com>
Date: Wed, 22 Mar 2023 16:54:59 +0100
Subject: [PATCH 2/2] Update README.es.md
---
exercises/01.2-Your-First-Style/README.es.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/exercises/01.2-Your-First-Style/README.es.md b/exercises/01.2-Your-First-Style/README.es.md
index 1b8ce317..4d6f37bd 100644
--- a/exercises/01.2-Your-First-Style/README.es.md
+++ b/exercises/01.2-Your-First-Style/README.es.md
@@ -1,6 +1,6 @@
# `01.2` Tu Primer Estilo
-Cuando usas CSS, la idea es aplicar `reglas css` a tus `elementos html`, siempre debes seleccionar primero el elemento y luego especificar qué reglas deseas aplicarle.
+Cuando usas CSS, la idea es aplicar `reglas css` a tus `elementos html`, siempre debes seleccionar primero el elemento y luego especificar qué reglas deseas aplicarle:
Por ejemplo, este es el código si quiero que todos los `anchors` de mi sitio web (etiquetas ``) sean azules (`blue`):