Skip to content

Commit 9c01fb9

Browse files
authored
Update description. (#897)
1 parent df1bf0c commit 9c01fb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/concept/logans-numeric-partition/.docs/instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ First you'll need to create a function which takes a pair of two lists and a num
1515

1616
## 2. Categorizing lots of numbers
1717

18-
Now that function you can write a function which takes a list of numbers and categorizes them like you did above:
18+
Now using the function you just created, you can write another function that takes a list of numbers and categorizes them like you did above:
1919

2020
```lisp
2121
(partition-numbers '(1 2 3 4)) ; => ((3 1) . (4 2))

0 commit comments

Comments
 (0)