From 76ca891873e5e9f28860caff84c1470bedf3f27a Mon Sep 17 00:00:00 2001 From: Amyssyko Date: Mon, 8 Sep 2025 18:59:19 -0500 Subject: [PATCH] Fix 'id' data type in output structure in README --- ejercicios-algoritmos/sesion-1/transformador/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ejercicios-algoritmos/sesion-1/transformador/README.md b/ejercicios-algoritmos/sesion-1/transformador/README.md index 8a98bb0..5c92d3e 100644 --- a/ejercicios-algoritmos/sesion-1/transformador/README.md +++ b/ejercicios-algoritmos/sesion-1/transformador/README.md @@ -8,7 +8,7 @@ const data = { edades: [INT], } const output = [ - { id: [STRING], nombre: [STRING], edad: [INT] }, + { id: [INT], nombre: [STRING], edad: [INT] }, ... ] ```