1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-09 01:58:02 +00:00

Add missing iex buffer prefix

This commit is contained in:
jbranchaud
2016-06-27 07:46:04 -05:00
parent 2070ffa7c5
commit b05f45850d

View File

@@ -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). allows you to create a list of words (namely, strings).
```elixir ```elixir
~w(one two three) > ~w(one two three)
["one", "two", "three"] ["one", "two", "three"]
``` ```