From b05f45850d9d33926e31a58ac8f1a2b83b4bac4e Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Mon, 27 Jun 2016 07:46:04 -0500 Subject: [PATCH] Add missing iex buffer prefix --- elixir/word-lists-for-atoms.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elixir/word-lists-for-atoms.md b/elixir/word-lists-for-atoms.md index 207a685..a3d18b6 100644 --- a/elixir/word-lists-for-atoms.md +++ b/elixir/word-lists-for-atoms.md @@ -4,7 +4,7 @@ The `~w` sigil works similarly to Ruby's `%w` (word array notation). It allows you to create a list of words (namely, strings). ```elixir -~w(one two three) +> ~w(one two three) ["one", "two", "three"] ```