Skip to content

Commit 59ce7e5

Browse files
committed
Merge pull request #8 from pythonsd/fix_annotations
Fix annotations
2 parents e699a7b + bbf83e3 commit 59ce7e5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

part-3.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"metadata": {
33
"name": "",
4-
"signature": "sha256:5d30c1bf0ef6ef9e2875c27ac6be4114ed2b22ed413599126aed7462e53be2a6"
4+
"signature": "sha256:3848b241b0636c3e2673e4668e6bbb1faaf7f14b99a3e00c8373dbe613082288"
55
},
66
"nbformat": 3,
77
"nbformat_minor": 0,
@@ -96,7 +96,7 @@
9696
"\n",
9797
"The name of our function is 'happy_birthday_carol'. It has 0 parameters. \n",
9898
"\n",
99-
"The body of our function contains four print lines. We need to indent these lines, and any other lines of code in function's body, by 4 spaces.\n",
99+
"The body of our function contains one print line. We need to indent this line, and any other lines of code in a function's body, by 4 spaces.\n",
100100
"\n",
101101
"Notice that nothing was printed out after we defined our function. To use our function we need to call it, like this:"
102102
]
@@ -336,7 +336,7 @@
336336
"source": [
337337
"Modules are used to make a programmer's life easier. A module is used to group functions, variables, and other things together in an understandable bundle.\n",
338338
"\n",
339-
"Python comes with lots of modules built-in. For example there's a random module for generating randomnes. Let's import it so we can use some of its functions:"
339+
"Python comes with lots of modules built-in. For example there's a random module for generating random numbers. Let's import it so we can use some of its functions:"
340340
]
341341
},
342342
{

0 commit comments

Comments
 (0)