From ebdb6b6b1cee2c8b23b2675962213d06749021f9 Mon Sep 17 00:00:00 2001 From: Debabrata Saha <94388618+debabratasaha-dev@users.noreply.github.com> Date: Fri, 15 May 2026 03:12:06 +0530 Subject: [PATCH] fix(curriculum): remove first-person language from workshop-heritage-library-catalog (#67410) --- .../699d20623e57e8ffee88545b.md | 2 +- .../699d20623e57e8ffee885462.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/blocks/workshop-heritage-library-catalog/699d20623e57e8ffee88545b.md b/curriculum/challenges/english/blocks/workshop-heritage-library-catalog/699d20623e57e8ffee88545b.md index 8e1ae94d1a4..f719715e194 100644 --- a/curriculum/challenges/english/blocks/workshop-heritage-library-catalog/699d20623e57e8ffee88545b.md +++ b/curriculum/challenges/english/blocks/workshop-heritage-library-catalog/699d20623e57e8ffee88545b.md @@ -7,7 +7,7 @@ dashedName: step-15 # --description-- -Let's verify the search works. Stephen King has six books in the catalog. +It's time to verify that the search works. Stephen King has six books in the catalog. Call `findByAuthor(catalog, "king")` and assign the result to a variable named `kingBooks`. Log `kingBooks.length` to confirm the count. diff --git a/curriculum/challenges/english/blocks/workshop-heritage-library-catalog/699d20623e57e8ffee885462.md b/curriculum/challenges/english/blocks/workshop-heritage-library-catalog/699d20623e57e8ffee885462.md index 8ff1b5c90cb..837bfc8de7d 100644 --- a/curriculum/challenges/english/blocks/workshop-heritage-library-catalog/699d20623e57e8ffee885462.md +++ b/curriculum/challenges/english/blocks/workshop-heritage-library-catalog/699d20623e57e8ffee885462.md @@ -7,7 +7,7 @@ dashedName: step-25 # --description-- -Let's see the validator catch a real problem. `catalog[0]` is "From a Buick 8" by Stephen King, which has all four fields populated. `catalog[16]` is "Unknown Title", which has a blank author field. +It's time to see the validator catch a real problem. `catalog[0]` is "From a Buick 8" by Stephen King, which has all four fields populated. `catalog[16]` is "Unknown Title", which has a blank author field. Log `validateEntry(catalog[0])` and `validateEntry(catalog[16])`. The first should return `true`; the second should return `false`.