Skip to content

Commit bdfd962

Browse files
authored
Correct typos in lesson 01
1 parent 4e5a0c1 commit bdfd962

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lessons/01-Introduction-to-haskell.ipynb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -300,10 +300,10 @@
300300
}
301301
},
302302
"source": [
303-
"* It lets you easily deduce and prove that a funciton is correct.\n",
303+
"* It lets you easily deduce and prove that a function is correct.\n",
304304
"* In Haskell one can always “replace equals by equals”, just like you learned in algebra class.\n",
305-
"* Makes your code significantly less error prone.\n",
306-
"* Its easier to do parallel/concurren computing. (If there is no data dependency between two pure expressions, then they can be performed in parallel and they cannot interfere with one another.)\n",
305+
"* Makes your code significantly less error-prone.\n",
306+
"* Its easier to do parallel/concurrent computing. (If there is no data dependency between two pure expressions, then they can be performed in parallel and they cannot interfere with one another.)\n",
307307
"* The list goes on..."
308308
]
309309
},
@@ -315,7 +315,7 @@
315315
}
316316
},
317317
"source": [
318-
"**Haskell works as a pure language, but allows for side effects (network communication, I/O, etc.) by explicitly tagging them in the type system.** We'll see how in future lessons. (This is called having \"*expicit effects*\")."
318+
"**Haskell works as a pure language, but allows for side effects (network communication, I/O, etc.) by explicitly tagging them in the type system.** We'll see how in future lessons. (This is called having \"*explicit effects*\")."
319319
]
320320
},
321321
{
@@ -605,7 +605,7 @@
605605
}
606606
],
607607
"source": [
608-
"-- A function that takes the temperature in Fahrenheith and returns it in Celsius\n",
608+
"-- A function that takes the temperature in Fahrenheit and returns it in Celsius\n",
609609
"fToC x = (x - 32) * 5 / 9\n",
610610
"fToC 212 -- 100\t"
611611
]

0 commit comments

Comments
 (0)