Skip to content

Commit ed2a0bd

Browse files
Fix typo (#149)
1 parent 505e7a1 commit ed2a0bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/Module4_OOP/Applications_of_OOP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class ShoppingList:
7373
items = [items]
7474
# only mark items as purchased that are on our list to begin with
7575
self._purchased.update(set(items) & self._needed)
76-
# remove all purchased items from out unpurchased set
76+
# remove all purchased items from our unpurchased set
7777
self._needed.difference_update(self._purchased)
7878

7979
def list_purchased_items(self):

0 commit comments

Comments
 (0)