From 21da767b660bcfad1be5b7249e3656734c6b4ab4 Mon Sep 17 00:00:00 2001 From: SanFenix <39173933+SanFenix@users.noreply.github.com> Date: Thu, 14 Mar 2019 11:48:51 -0400 Subject: [PATCH] Fixed Grammatics issues (#30717) Fixed the grammatical syntax of some sentences --- .../basic-html-and-html5/create-a-text-field.spanish.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/curriculum/challenges/spanish/01-responsive-web-design/basic-html-and-html5/create-a-text-field.spanish.md b/curriculum/challenges/spanish/01-responsive-web-design/basic-html-and-html5/create-a-text-field.spanish.md index 67895c80e0..5ab93329f9 100644 --- a/curriculum/challenges/spanish/01-responsive-web-design/basic-html-and-html5/create-a-text-field.spanish.md +++ b/curriculum/challenges/spanish/01-responsive-web-design/basic-html-and-html5/create-a-text-field.spanish.md @@ -7,17 +7,17 @@ localeTitle: Crear un campo de texto --- ## Description -
Ahora vamos a crear un formulario web. Los elementos de entrada son una forma conveniente de obtener información de su usuario. Puede crear una entrada de texto como esta: <input type="text"> Tenga en cuenta que input elementos de input se cierran automáticamente.
+
Ahora vamos a crear un formulario web. Los elementos de entrada son una forma conveniente de obtener información de su usuario. Puede crear una entrada de texto como esta: <input type="text"> Tenga en cuenta que los elementos input se cierran automáticamente.
## Instructions -
Cree un elemento de input de text de tipo debajo de sus listas.
+
Cree un elemento input de tipo >text debajo de sus listas.
## Tests
```yml tests: - - text: Su aplicación debe tener un elemento de input de text de tipo. + - text: Su aplicación debe tener un elemento de input de tipo text. testString: 'assert($("input[type=text]").length > 0, "Your app should have an input element of type text.");' ```