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.");' ```