From 2ae8a0a720942d356ca689cfc8d25bc9d70c1dd9 Mon Sep 17 00:00:00 2001 From: "Ian J. MacIntosh" Date: Tue, 15 Oct 2024 20:58:45 -0400 Subject: [PATCH] Nitpicks for Ch. 10 (#401) --- exercises/10.arrays/01.solution.key-prop/README.mdx | 4 ++-- exercises/10.arrays/README.mdx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/exercises/10.arrays/01.solution.key-prop/README.mdx b/exercises/10.arrays/01.solution.key-prop/README.mdx index 10aed2475..cf210a074 100644 --- a/exercises/10.arrays/01.solution.key-prop/README.mdx +++ b/exercises/10.arrays/01.solution.key-prop/README.mdx @@ -2,10 +2,10 @@ -👨‍💼 Great work. That was super weird an confusing for our users. They're much +👨‍💼 Great work. That was super weird and confusing for our users. They're much happier now. -🦉 Note, the key only needs to be unique within a given array. So this works +🦉 The key only needs to be unique within a given array. So this works fine: ```tsx diff --git a/exercises/10.arrays/README.mdx b/exercises/10.arrays/README.mdx index d97a6ec76..ff66e9f42 100644 --- a/exercises/10.arrays/README.mdx +++ b/exercises/10.arrays/README.mdx @@ -45,7 +45,7 @@ So we're interpolating an array of renderable elements. This is totally acceptable, but it has interesting implications for when things change over time. -We haven't covered things changing over time yet, but this warning's going to +We haven't covered things changing over time yet, but a warning's going to show up any time you render an array regardless of whether that array changes so we're going to address that here.