Skip to content

Commit 9ac188a

Browse files
authored
Fix formatting of chapter 20 README
1 parent 4e2cb0a commit 9ac188a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

chapter_20/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Exercises for Chapter 20
1+
# Exercises for Chapter 20
22

3-
##1. Build a database for a website. Database needs to have three tables: users, tips and abuse.
3+
## 1. Build a database for a website. Database needs to have three tables: users, tips and abuse.
44
`erlang_tips.erl` is stored in `exercise_1/`. Example usage:
55

66
1> erlang_tips:module_info(exports).
@@ -32,7 +32,7 @@
3232
{tip,"google.com","This site is a fake",undefined}]
3333
5>
3434

35-
##2. Take the previous exercise and get it run with ram and disk copies on two nodes.
35+
## 2. Take the previous exercise and get it run with ram and disk copies on two nodes.
3636
`erlang_tips.erl` is stored in `exercise_2/`. To run the `erlang_tips` database on two nodes open up two terminal sessions and start two Erlang nodes. The first:
3737

3838
cd exercise_2/
@@ -64,5 +64,5 @@ Then run the `all_tips` function to retrieve the tips on node 2:
6464
{tip,"google.com","Use this site to find stuff",undefined}]
6565
(node2@localhost)2>
6666

67-
##3. Write function to reject tip submissions if the user has submitted more than 10 tips in a one-day period. Time queries.
67+
## 3. Write function to reject tip submissions if the user has submitted more than 10 tips in a one-day period. Time queries.
6868
`erlang_tips.erl` for exercise 3 is stored in `exercise_3/`. To run this version of the `erlang_tips` you only need to run one node.

0 commit comments

Comments
 (0)