From ef9595b92dd62895910eb4fab971cbf228cf3cfe Mon Sep 17 00:00:00 2001 From: "Deepak.S" Date: Thu, 14 May 2026 18:39:38 +0530 Subject: [PATCH] fix(curriculum): remove first person language from linked list class workshop (#67391) Signed-off-by: Deepak.S Co-authored-by: majestic-owl448 <26656284+majestic-owl448@users.noreply.github.com> --- .../workshop-linked-list-class/68b84df2648b4c96b25022f3.md | 2 +- .../workshop-linked-list-class/68b9e951e4892721632acc26.md | 2 +- .../workshop-linked-list-class/68ba19dec78f654b7fca401e.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/curriculum/challenges/english/blocks/workshop-linked-list-class/68b84df2648b4c96b25022f3.md b/curriculum/challenges/english/blocks/workshop-linked-list-class/68b84df2648b4c96b25022f3.md index ec8afb4560b..bae18eae697 100644 --- a/curriculum/challenges/english/blocks/workshop-linked-list-class/68b84df2648b4c96b25022f3.md +++ b/curriculum/challenges/english/blocks/workshop-linked-list-class/68b84df2648b4c96b25022f3.md @@ -7,7 +7,7 @@ dashedName: step-8 # --description-- -Let's test your linked list so far! At the bottom of your code, create an instance of `LinkedList` called `my_list`. Then, using the `is_empty` method you created in the last step, print `my_list.is_empty()`. +It's time to test your linked list so far! At the bottom of your code, create an instance of `LinkedList` called `my_list`. Then, using the `is_empty` method you created in the last step, print `my_list.is_empty()`. # --hints-- diff --git a/curriculum/challenges/english/blocks/workshop-linked-list-class/68b9e951e4892721632acc26.md b/curriculum/challenges/english/blocks/workshop-linked-list-class/68b9e951e4892721632acc26.md index a52e485e0dd..c526be6f342 100644 --- a/curriculum/challenges/english/blocks/workshop-linked-list-class/68b9e951e4892721632acc26.md +++ b/curriculum/challenges/english/blocks/workshop-linked-list-class/68b9e951e4892721632acc26.md @@ -7,7 +7,7 @@ dashedName: step-15 # --description-- -Great! Now let's test adding elements to your linked list. At the bottom of your code, after creating an instance of `LinkedList` called `my_list` and printing `my_list.is_empty()`, add `1` and `2` to the list using the `add` method. +Great! Now it's time to test adding elements to your linked list. At the bottom of your code, after creating an instance of `LinkedList` called `my_list` and printing `my_list.is_empty()`, add `1` and `2` to the list using the `add` method. Then, print `my_list.is_empty()` again to confirm that the list is no longer empty. Finally, print `my_list.length` to see the current length of the linked list. diff --git a/curriculum/challenges/english/blocks/workshop-linked-list-class/68ba19dec78f654b7fca401e.md b/curriculum/challenges/english/blocks/workshop-linked-list-class/68ba19dec78f654b7fca401e.md index 335aacc1f29..a50f499df37 100644 --- a/curriculum/challenges/english/blocks/workshop-linked-list-class/68ba19dec78f654b7fca401e.md +++ b/curriculum/challenges/english/blocks/workshop-linked-list-class/68ba19dec78f654b7fca401e.md @@ -7,7 +7,7 @@ dashedName: step-24 # --description-- -Now, let's test removing an element from your linked list. At the bottom of your code, remove `1` from the list using the `remove` method. Then, print `my_list.length` again to see the updated length of the linked list. +Now, it's time to test removing an element from your linked list. At the bottom of your code, remove `1` from the list using the `remove` method. Then, print `my_list.length` again to see the updated length of the linked list. With that, the linked list data structure workshop is complete!