Skip to content

Commit 31f33f8

Browse files
committed
update when to use OOP
1 parent afde82d commit 31f33f8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

notebooks/WhenToUseOOP.ipynb

+3-3
Original file line numberDiff line numberDiff line change
@@ -311,12 +311,12 @@
311311
},
312312
{
313313
"cell_type": "code",
314-
"execution_count": 36,
314+
"execution_count": null,
315315
"id": "ff2adb97",
316316
"metadata": {},
317317
"outputs": [],
318318
"source": [
319-
"# let's take one more step; allow Polygon to accet tuples too\n",
319+
"# let's take one more step; allow Polygon to accept Tuples too\n",
320320
"from typing import Union\n",
321321
"\n",
322322
"Pair = Tuple[float, float]\n",
@@ -671,7 +671,7 @@
671671
"- assemble manager objects by knitting other objects together\n",
672672
"- to an extent, a manager is also an Adapter among the various interfaces\n",
673673
" - another design pattern covered later in the course\n",
674-
"- Solution/Main class in `A0-OOP and A1-OOP` subfolders are examples of a manager class"
674+
"- Solution/Main class in demo-assignments `A0-OOP, A1-OOP` are examples of a manager class"
675675
]
676676
},
677677
{

0 commit comments

Comments
 (0)