From 55aa9260e7469a5698c3716b13a9dcf7a9c354bf Mon Sep 17 00:00:00 2001 From: Clarence Bakosi Date: Thu, 14 May 2026 20:17:27 +0100 Subject: [PATCH] fix(curriculum): remove first person language from media catalogue workshop (#67398) Signed-off-by: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com> Co-authored-by: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com> --- .../blocks/workshop-media-catalogue/68b6d5244e6ce639e52fd1e7.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/workshop-media-catalogue/68b6d5244e6ce639e52fd1e7.md b/curriculum/challenges/english/blocks/workshop-media-catalogue/68b6d5244e6ce639e52fd1e7.md index 8b9aa7809dd..2b85fa4d432 100644 --- a/curriculum/challenges/english/blocks/workshop-media-catalogue/68b6d5244e6ce639e52fd1e7.md +++ b/curriculum/challenges/english/blocks/workshop-media-catalogue/68b6d5244e6ce639e52fd1e7.md @@ -7,7 +7,7 @@ dashedName: step-16 # --description-- -What if you want to represent a different type of media item, let's say a tv series? You could create another class and make it inherit from `Movie` to have access to all of its methods and attributes. +What if you want to represent a different type of media item, such as a TV series? You could create another class and make it inherit from `Movie` to have access to all of its methods and attributes. Create an empty class named `TVSeries` and make it inherit from `Movie`. Here's how to make a `Child` class inherit from a `Parent` class.