From 13f04fd7f7d2fb11fad10865b6429b71d5fe8b9e Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Mon, 21 Jul 2025 10:12:11 +0000 Subject: [PATCH] Rename a title Rename "Balanced Ternary Number Representation" to "Balanced Ternary Representation". --- src/components/BalancedTernaryGame.tsx | 4 ++-- src/components/InteractiveIndex.tsx | 2 +- src/pages/Index.tsx | 2 +- src/pages/theme-pages/discrete-math/Foundations.tsx | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/BalancedTernaryGame.tsx b/src/components/BalancedTernaryGame.tsx index ac9083e..beecc8c 100644 --- a/src/components/BalancedTernaryGame.tsx +++ b/src/components/BalancedTernaryGame.tsx @@ -169,7 +169,7 @@ const BalancedTernaryGame: React.FC = ({ showSocialSha return (
-

Balanced Ternary Number Representation

+

Balanced Ternary Representation

Use + and - buttons to add or subtract powers of three. Digits can be T (-1), 0, or 1.

{highScore !== null && ( @@ -315,7 +315,7 @@ const BalancedTernaryGame: React.FC = ({ showSocialSha {showSocialShare && ( diff --git a/src/components/InteractiveIndex.tsx b/src/components/InteractiveIndex.tsx index 6a43150..4836a38 100644 --- a/src/components/InteractiveIndex.tsx +++ b/src/components/InteractiveIndex.tsx @@ -39,7 +39,7 @@ const allInteractives: Interactive[] = [ }, { id: 'balanced-ternary-game', - title: 'Balanced Ternary Number Representation', + title: 'Balanced Ternary Representation', description: 'Explore balanced ternary using digits T (-1), 0, and 1. Add or subtract powers of three to match the target number.', tags: ['balanced-ternary', 'numbers', 'conversion', 'representation', 'base-3', 'signed-digits'], path: '/balanced-ternary-game', diff --git a/src/pages/Index.tsx b/src/pages/Index.tsx index 553f7ea..8f74db9 100644 --- a/src/pages/Index.tsx +++ b/src/pages/Index.tsx @@ -22,7 +22,7 @@ const allInteractives = [{ theme: 'Discrete Math' }, { id: 'balanced-ternary-game', - title: 'Balanced Ternary Number Representation', + title: 'Balanced Ternary Representation', description: 'Explore balanced ternary using digits T (-1), 0, and 1. Add or subtract powers of three to match the target number.', tags: ['balanced-ternary', 'numbers', 'signed-digits'], path: '/balanced-ternary-game', diff --git a/src/pages/theme-pages/discrete-math/Foundations.tsx b/src/pages/theme-pages/discrete-math/Foundations.tsx index 2c90e66..15f90bf 100644 --- a/src/pages/theme-pages/discrete-math/Foundations.tsx +++ b/src/pages/theme-pages/discrete-math/Foundations.tsx @@ -30,7 +30,7 @@ const interactives: Interactive[] = [{ greenScreenPath: "/ternary-number-game" }, { id: "balanced-ternary-game", - title: "Balanced Ternary Number Representation", + title: "Balanced Ternary Representation", description: "Explore balanced ternary using digits T (-1), 0, and 1. Add or subtract powers of three to match the target number.", tags: ["balanced-ternary", "numbers", "conversion", "representation", "base-3", "signed-digits"], component: BalancedTernaryGame,