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"] ```