From c0768be03e361f0556e3dc6a656ba67d7703253a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Miguel?= <44590200+FlyinSh0es@users.noreply.github.com> Date: Fri, 15 Mar 2019 05:21:36 -0300 Subject: [PATCH] Grammar, translation an structure modifications (#33045) Changed verbs/adjectives in 3rd grammatical person for their 2nd grammatical person equivalents, erased unnecesary commas, and adjusted shifty phrase structures. --- .../basic-html-and-html5/comment-out-html.spanish.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/curriculum/challenges/spanish/01-responsive-web-design/basic-html-and-html5/comment-out-html.spanish.md b/curriculum/challenges/spanish/01-responsive-web-design/basic-html-and-html5/comment-out-html.spanish.md index ffac46345e..6387d8b6e2 100644 --- a/curriculum/challenges/spanish/01-responsive-web-design/basic-html-and-html5/comment-out-html.spanish.md +++ b/curriculum/challenges/spanish/01-responsive-web-design/basic-html-and-html5/comment-out-html.spanish.md @@ -7,10 +7,10 @@ localeTitle: Comentar fuera de HTML --- ## Description -
Recuerde que para iniciar un comentario, debe usar <!-- y para finalizar un comentario, debe usar --> Aquí deberá finalizar el comentario antes de que comience su elemento h2 .
+
Recuerda que para iniciar un comentario debes usar <!-- y para finalizar un comentario debes usar --> . Aquí deberás finalizar el comentario antes de que comience tu elemento h2 .
## Instructions -
Comente su elemento h1 y su elemento p , pero no su elemento h2 .
+
Comenta tus elementos h1 p , pero no h2 .
## Tests
@@ -19,13 +19,13 @@ localeTitle: Comentar fuera de HTML tests: - text: Comenta tu elemento h1 para que no se vea en tu página. testString: 'assert(($("h1").length === 0), "Comment out your h1 element so that it is not visible on your page.");' - - text: Deje su elemento h2 comentarios para que sea visible en su página. + - text: Deja tu elemento h2 sin comentar, para que sea visible en su página. testString: 'assert(($("h2").length > 0), "Leave your h2 element uncommented so that it is visible on your page.");' - text: Comenta tu elemento p para que no se vea en tu página. testString: 'assert(($("p").length === 0), "Comment out your p element so that it is not visible on your page.");' - - text: Asegúrese de cerrar cada uno de sus comentarios con --> . + - text: Asegúrate de cerrar cada uno de tus comentarios con --> . testString: 'assert(code.match(/[^fc]-->/g).length > 1, "Be sure to close each of your comments with -->.");' - - text: No cambie el orden de h1 h2 o p en el código. + - text: No cambies el orden de h1 h2 o p en el código. testString: 'assert((code.match(/<([a-z0-9]){1,2}>/g)[0]==="

" && code.match(/<([a-z0-9]){1,2}>/g)[1]==="

" && code.match(/<([a-z0-9]){1,2}>/g)[2]==="

") , "Do not change the order of the h1 h2 or p in the code.");' ```