Skip to content

Commit

Permalink
Fix a typo in Sigils lesson
Browse files Browse the repository at this point in the history
  • Loading branch information
bartblast authored and doomspork committed Apr 10, 2017
1 parent edb5ede commit aa893cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lessons/basics/sigils.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,4 +163,4 @@ iex> ~u/elixir school/
ELIXIR SCHOOL
```

First we define a module called `MySigils` and within that module, we created a function called `sigil_u`. As there is no existing `~u` sigil in the existing sigil space, we will use it. The `_u` indicates that we wish use `u` as the character after the tilde. The function definition must take two arguments, an input and a list.
First we define a module called `MySigils` and within that module, we created a function called `sigil_u`. As there is no existing `~u` sigil in the existing sigil space, we will use it. The `_u` indicates that we wish to use `u` as the character after the tilde. The function definition must take two arguments, an input and a list.

0 comments on commit aa893cf

Please sign in to comment.