Skip to content

Commit 090565b

Browse files
committed
adds clarity that the file completion should be done in the provided files
1 parent 62fda7e commit 090565b

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,11 @@ If you `cd` into the repository and type `git remote -v` you should see your par
5050

5151
### Step 1: Complete a Function
5252

53-
Each team member, A, B, and (maybe) C will complete **one** of the following functions and then add and commit the file. So one teammate will complete `function_a` and another `function_b` etc.
53+
Each team member, A, B, and (maybe) C will complete **one** of the following functions and then add and commit the file.
5454

55-
**function_a**
55+
So one teammate will fill in the body of the function in `function_a.py` and another will complete the body of the function in `function_b.py`, etc.
56+
57+
**function_a.py**
5658

5759
```python
5860
def most_common_value(number_list):
@@ -74,7 +76,7 @@ def most_common_value(number_list):
7476
return most_common_value
7577
```
7678

77-
**function_b**
79+
**function_b.py**
7880

7981
```python
8082
def silly_sum():
@@ -96,7 +98,7 @@ def silly_sum():
9698
return sum
9799
```
98100

99-
**function_c** - for 3-person teams
101+
**function_c.py** - for 3-person teams
100102

101103
```python
102104
def merge_lists(list_a, list_b):

0 commit comments

Comments
 (0)