From 9ccdd8effeab55e4ed662f2cca626b195dd452b5 Mon Sep 17 00:00:00 2001 From: Benjamin Adovasio Date: Fri, 13 Mar 2026 08:00:04 -0400 Subject: [PATCH] added one more comment --- Project 4/LinkedList.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project 4/LinkedList.py b/Project 4/LinkedList.py index d09b98d..be46e28 100644 --- a/Project 4/LinkedList.py +++ b/Project 4/LinkedList.py @@ -139,7 +139,7 @@ class LinkedList[T]: self.size -= 1 #decrease the size of the list by 1 return removed_data #return the data from the removed node - current = self.head + current = self.head #start from the head node while current.get_next().get_next() is not None: #while the next node's next pointer is not None, keep going current = current.get_next() #move current to the next node