From 16c295998b32130975ebf4017c2ef0a4bf17311f Mon Sep 17 00:00:00 2001 From: jinglesthula <792506+jinglesthula@users.noreply.github.com> Date: Mon, 15 Apr 2024 14:28:52 -0600 Subject: [PATCH] Fix typo in comment (#127) --- exercises/05.prop-getters/02.problem.getters/toggle.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/05.prop-getters/02.problem.getters/toggle.tsx b/exercises/05.prop-getters/02.problem.getters/toggle.tsx index 396f081a..a3d31838 100644 --- a/exercises/05.prop-getters/02.problem.getters/toggle.tsx +++ b/exercises/05.prop-getters/02.problem.getters/toggle.tsx @@ -5,7 +5,7 @@ export function useToggle() { const toggle = () => setOn(!on) // 🐨 create a function called getTogglerProps that accepts an object - // of props and returns an object of props that includes 'aria-clicked' and onClick. + // of props and returns an object of props that includes 'aria-checked' and onClick. // 💰 Make sure to handle the case where the user provides their own // 'aria-checked' and 'onClick' props (as well as if they don't or if they