From 6e26d8385125493093547285f7e9a347c62173c8 Mon Sep 17 00:00:00 2001 From: Mansi-Tanwar <148472134+Mansi-Tanwar@users.noreply.github.com> Date: Thu, 10 Oct 2024 23:04:40 +0530 Subject: [PATCH] Update readme.md --- .../Circular_Linked_list/deletion/at_the_end/readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Linked_list/Circular_Linked_list/deletion/at_the_end/readme.md b/Linked_list/Circular_Linked_list/deletion/at_the_end/readme.md index b46bef4f..a1cc6814 100644 --- a/Linked_list/Circular_Linked_list/deletion/at_the_end/readme.md +++ b/Linked_list/Circular_Linked_list/deletion/at_the_end/readme.md @@ -44,9 +44,9 @@ When running the program, the output shows the linked list before and after the - **Original List**: 10 -> 20 -> 30 -> 40 -> (Back to head) -- **Deleting from the beginning...**: +- **Deleting from the end...**: - List after deletion from the start: + List after deletion from the end: 10 -> 20 -> 30 -> (Back to head)