diff --git a/curriculum/challenges/english/blocks/quiz-data-structures/67f41341453c2247fb2828f7.md b/curriculum/challenges/english/blocks/quiz-data-structures/67f41341453c2247fb2828f7.md index 78d56a93483..12eeed22fe7 100644 --- a/curriculum/challenges/english/blocks/quiz-data-structures/67f41341453c2247fb2828f7.md +++ b/curriculum/challenges/english/blocks/quiz-data-structures/67f41341453c2247fb2828f7.md @@ -281,7 +281,7 @@ What is the time complexity of inserting a new node at the head of a singly link #### --text-- -Which operation returns the top element of a stack without removing it? +Which operation is used to remove an element from a stack? #### --distractors-- @@ -289,7 +289,7 @@ Which operation returns the top element of a stack without removing it? --- -`pop` +`dequeue` --- @@ -297,7 +297,7 @@ Insert at bottom. #### --answer-- -`peek` +`pop` ### --question--