Skip to content

Commit cf30a3f

Browse files
committed
remove typo error
1 parent 60478b5 commit cf30a3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sprint-2/implement_lru_cache/lru_cache.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def __init__(self, limit: int):
1717
self.size = 0
1818

1919

20-
#to remove a node frpm linkedlist
20+
#to remove a node from linkedlist
2121
def _remove_node(self, node: Node):
2222
if node.prev:
2323
node.prev.next = node.next

0 commit comments

Comments
 (0)