From 2c5a83889a1bada27badaae3052420fdce48940f Mon Sep 17 00:00:00 2001 From: mikulely Date: Mon, 25 Nov 2013 09:19:19 +0800 Subject: [PATCH] to_binary has been deprecated, to_string works Tested on Interactive Elixir (0.11.2-dev) --- getting_started/3.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getting_started/3.markdown b/getting_started/3.markdown index 8e297cb2c..311fb3777 100644 --- a/getting_started/3.markdown +++ b/getting_started/3.markdown @@ -464,6 +464,6 @@ In other words, we are simply calling the function `flatten` on the atom `:lists ```iex iex> is_atom(List) true -iex> to_binary(List) +iex> to_string(List) "Elixir.List" ```