From f39bd634a69cb0afbf22e2a8d3e80e3889780a69 Mon Sep 17 00:00:00 2001 From: SanFenix <39173933+SanFenix@users.noreply.github.com> Date: Thu, 14 Mar 2019 19:13:55 -0400 Subject: [PATCH] Fixed grammaticals issues (#30730) Fixed grammatical issues in some sentences --- .../declare-the-doctype-of-an-html-document.spanish.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/spanish/01-responsive-web-design/basic-html-and-html5/declare-the-doctype-of-an-html-document.spanish.md b/curriculum/challenges/spanish/01-responsive-web-design/basic-html-and-html5/declare-the-doctype-of-an-html-document.spanish.md index 1d756aab5c..85657c8083 100644 --- a/curriculum/challenges/spanish/01-responsive-web-design/basic-html-and-html5/declare-the-doctype-of-an-html-document.spanish.md +++ b/curriculum/challenges/spanish/01-responsive-web-design/basic-html-and-html5/declare-the-doctype-of-an-html-document.spanish.md @@ -21,7 +21,7 @@ tests: testString: 'assert(code.match(//gi), "Your code should include a <!DOCTYPE html> tag.");' - text: Debe haber un elemento html . testString: 'assert($("html").length == 1, "There should be one html element.");' - - text: Las etiquetas html deben envolver alrededor de un elemento h1 . + - text: Las etiquetas html deben envolver un elemento h1 . testString: 'assert(code.match(/\s*?

\s*?.*?\s*?<\/h1>\s*?<\/html>/gi), "The html tags should wrap around one h1 element.");' ```