Skip to content

Commit a595035

Browse files
committed
fixed spelling
1 parent b8d1062 commit a595035

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

tutorials/multiprocessing_intro.ipynb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"metadata": {
33
"name": "",
4-
"signature": "sha256:4324cc9b055392dcbb5813ce3a18ba58a848b9da045d6c60188030f257582522"
4+
"signature": "sha256:71b41bd32e9a3483fb6b2a31c1a9a11b0ed8e32dace59748d17e5e2292c778b0"
55
},
66
"nbformat": 3,
77
"nbformat_minor": 0,
@@ -75,7 +75,7 @@
7575
"metadata": {},
7676
"source": [
7777
"\n",
78-
"Multi-Threading vs. Multi-Processesing\n"
78+
"Multi-Threading vs. Multi-Processing\n"
7979
]
8080
},
8181
{
@@ -159,9 +159,9 @@
159159
"cell_type": "markdown",
160160
"metadata": {},
161161
"source": [
162-
"The [multiprocessing](https://docs.python.org/dev/library/multiprocessing.html) module in Python's Standard Libarary has a lot of powerful features. If you want to read about all the nitty-gritty tips, tricks, and details, I would recommend to use the [official documentation](https://docs.python.org/dev/library/multiprocessing.html) as an entry point. \n",
162+
"The [multiprocessing](https://docs.python.org/dev/library/multiprocessing.html) module in Python's Standard Library has a lot of powerful features. If you want to read about all the nitty-gritty tips, tricks, and details, I would recommend to use the [official documentation](https://docs.python.org/dev/library/multiprocessing.html) as an entry point. \n",
163163
"\n",
164-
"In the following sections, I want to provide a brief overview of different approaches to show how the `multiprocessing` module can be used for prallel programming."
164+
"In the following sections, I want to provide a brief overview of different approaches to show how the `multiprocessing` module can be used for parallel programming."
165165
]
166166
},
167167
{
@@ -741,7 +741,7 @@
741741
"cell_type": "markdown",
742742
"metadata": {},
743743
"source": [
744-
"Below, we will set up a benchmarking functions for our serial and multiprocessig approach that we can pass to our `timeit` benchmark function."
744+
"Below, we will set up a benchmarking functions for our serial and multiprocessing approach that we can pass to our `timeit` benchmark function."
745745
]
746746
},
747747
{

0 commit comments

Comments
 (0)