From 511cd8baec7cd9ee02b628677a2688acadbdcd21 Mon Sep 17 00:00:00 2001 From: Adam Rutkowski Date: Wed, 8 Apr 2015 21:47:31 +0200 Subject: [PATCH] Fix function call example --- crash-course.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crash-course.markdown b/crash-course.markdown index bc57fdcf4..f12f011d3 100644 --- a/crash-course.markdown +++ b/crash-course.markdown @@ -168,7 +168,7 @@ orddict:new(). to invoke the `new` function from the `orddict` module. In Elixir, use the dot `.` in place of the colon `:` ```elixir -Kernel.self +Orddict.new ``` **Note**. Since Erlang modules are represented by atoms, you may invoke Erlang functions in Elixir as follows: