diff --git a/challenges/01-front-end-development-certification/json-apis-and-ajax.json b/challenges/01-front-end-development-certification/json-apis-and-ajax.json
index 6853ddd698..d64d6f00ab 100644
--- a/challenges/01-front-end-development-certification/json-apis-and-ajax.json
+++ b/challenges/01-front-end-development-certification/json-apis-and-ajax.json
@@ -286,7 +286,7 @@
"id": "56bbb991ad1ed5201cd392d8",
"title": "Render Images from Data Sources",
"description": [
- "We've seen from the last two lessons that each object in our JSON array contains an imageLink
key with a value that is the url of a cat's image.",
+ "We've seen from the last two lessons that each object in our JSON array contains an imageLink
key with a value that is the URL of a cat's image.",
"When we're looping through these objects, let's use this imageLink
property to display this image in an img
element.",
"Here's the code that does this:",
"html += \"<img src = '\" + val.imageLink + \"'>\";
"
@@ -346,14 +346,14 @@
"challengeType": 0,
"titleEs": "Presenta imágenes de fuentes de datos",
"descriptionEs": [
- "Hemos visto en las dos últimas lecciones que cada objeto en nuestro vector JSON contiene una llave imageLink
con un valor que corresponde a la url de la imagen de un gato.",
+ "Hemos visto en las dos últimas lecciones que cada objeto en nuestro vector JSON contiene una llave imageLink
con un valor que corresponde a la URL de la imagen de un gato.",
"Cuando estamos recorriendo estos objetos, usemos esta propiedad imageLink
para visualizar la imagen en un elemento img
.",
"Aquí está el código que hace esto:",
"html += \"<img src = '\" + val.imageLink + \"'>\";
"
],
"titlePt": "Apresentar as imagens da fonte de dados",
"descriptionPt": [
- "Como temos visto nas ultimas lições, cada objeto em nosso array JSON contém a chave imageLink
com um valor que corresponde a url da imagem de um gato.",
+ "Como temos visto nas ultimas lições, cada objeto em nosso array JSON contém a chave imageLink
com um valor que corresponde a URL da imagem de um gato.",
"Quando estamos percorrendo por estes objetos, usamos a propriedade imageLink
para visualizar a imagem em um elemento img
.",
"Aqui está o código para fazer isso:",
"html += \"<img src = '\" + val.imageLink + \"'>\";
"