Skip to content

Commit 0674277

Browse files
Update
1 parent 5e450f9 commit 0674277

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Chapter04/doubly_linked_list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def __init__ (self):
1111
self.count = 0
1212

1313
def append(self, data):
14-
#Append an item to the list.
14+
#Append an item at the end of the list.
1515
new_node = Node(data, None, None)
1616
if self.head is None:
1717
self.head = new_node

0 commit comments

Comments
 (0)