Skip to content

Commit ff63e7d

Browse files
committed
Capitalization.
1 parent d9b0639 commit ff63e7d

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

modules/home-assignments/dirtree.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,14 @@ char *paths[] = {
2626
"/beverages/alcohol/beer.c",
2727
"/food/healthy/vegetarian/salad.txt",
2828
"/food/healthy/fruit/blueberries.hs",
29-
"/food/unhealthy/cake.md" };
29+
"/food/unhealthy/cake.md"
30+
};
3031
```
3132

3233
#solution dirtree.c
3334

34-
bonus tasks:
35-
- print also non-leaf nodes via depth first, with each node indented based on
35+
Bonus tasks:
36+
- Print also non-leaf nodes via depth first, with each node indented based on
3637
its tree depth. E.g:
3738

3839
```
@@ -45,5 +46,5 @@ f.txt
4546
bar/
4647
```
4748

48-
- remove the limitation for the constant number of children
49-
- print full paths of all files in the tree (hint: backpointers)
49+
- Remove the limitation for the constant number of children.
50+
- Print full paths of all files in the tree (hint: backpointers)

0 commit comments

Comments
 (0)