Skip to content

Commit 5778948

Browse files
authored
Improve Erlang function sum example (#1754)
1 parent a038f38 commit 5778948

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crash-course.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -531,8 +531,8 @@ sum(1, 2).
531531
sum([1], [2]).
532532
%=> [1, 2]
533533

534-
sum("a", "b").
535-
%=> "ab"
534+
sum(<<"a">>, <<"b">>).
535+
%=> <<"ab">>
536536
```
537537

538538
**Elixir**

0 commit comments

Comments
 (0)