Skip to content

Commit 14fc016

Browse files
committed
Merge pull request elixir-lang#449 from eksperimental/crash_course
highlight as erlang shell (crash-course)
2 parents af5b0ad + a647433 commit 14fc016

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

crash-course.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ hello() ->
3737

3838
Add your functions to it, save it to disk, run `erl` from the same directory and execute the `compile` command:
3939

40-
```erlang
40+
```erl
4141
Eshell V5.9 (abort with ^G)
4242
1> c(module_name).
4343
ok
@@ -130,7 +130,7 @@ Elixir allows you to assign to a variable more than once. If you want to match a
130130

131131
**Erlang**
132132

133-
```erlang
133+
```erl
134134
Eshell V5.9 (abort with ^G)
135135
1> X = 10.
136136
10
@@ -152,7 +152,7 @@ ok
152152

153153
**Elixir**
154154

155-
```elixir
155+
```iex
156156
iex> a = 1
157157
1
158158
iex> a = 2

0 commit comments

Comments
 (0)