From b9b6db03307b89203f41d86c0c0ccd52b8f43f4b Mon Sep 17 00:00:00 2001 From: ShivangSKonde Date: Sun, 24 May 2026 17:39:03 +0530 Subject: [PATCH] fix(curriculum): correct capitalization in Task 9 data types challenge (#67570) --- .../6630e609d81a446cd663c521.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/learn-how-to-use-code-related-concepts-and-terms/6630e609d81a446cd663c521.md b/curriculum/challenges/english/blocks/learn-how-to-use-code-related-concepts-and-terms/6630e609d81a446cd663c521.md index a84654cbb9b..e7e01200b18 100644 --- a/curriculum/challenges/english/blocks/learn-how-to-use-code-related-concepts-and-terms/6630e609d81a446cd663c521.md +++ b/curriculum/challenges/english/blocks/learn-how-to-use-code-related-concepts-and-terms/6630e609d81a446cd663c521.md @@ -12,7 +12,7 @@ lang: en-US The verb `to store` in programming refers to the act of keeping or saving data so that it can be used later. Choosing the right data types is critical because it influences how information is `stored` and used in a program. -Different data types are suited for different kinds of information, like text, numbers, or boolean values. For example, To `store` text, a programmer might use the data type `string`. +Different data types are suited for different kinds of information, like text, numbers, or boolean values. For example, to `store` text, a programmer might use the data type `string`. # --fillInTheBlank--