Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions crash-course.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -493,9 +493,9 @@ In both Erlang and Elixir, a function is not identified only by its name, but by
**Erlang**

```erlang
sum() -> 0;
sum(A) -> A;
sum(A, B) -> A + B;
sum() -> 0.
sum(A) -> A.
sum(A, B) -> A + B.
sum(A, B, C) -> A + B + C.
```

Expand Down