Skip to content

Commit

Permalink
Update README.md to add missing end
Browse files Browse the repository at this point in the history
  • Loading branch information
Alberdi authored Dec 20, 2023
1 parent ddff813 commit dbffe3f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@ All tasks are registered with a default priority of `0` and then executed from l

```erl

ok = nhooks:register_task(test_app, init, fun(Term) -> first, -1).
ok = nhooks:register_task(test_app, init, fun(Term) -> second end).
ok = nhooks:register_task(test_app, init, fun(Term) -> third end, 5).
ok = nhooks:register_task(test_app, init, fun(_Term) -> first end, -1).
ok = nhooks:register_task(test_app, init, fun(_Term) -> second end).
ok = nhooks:register_task(test_app, init, fun(_Term) -> third end, 5).

```

Expand Down

0 comments on commit dbffe3f

Please sign in to comment.