Skip to content

Commit 26a62a5

Browse files
committed
Change from variables to atoms
1 parent 8f6adc5 commit 26a62a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

getting_started/meta/1.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Besides the tuple defined above, there are five Elixir literals that, when quote
8282
{key, value} #=> Tuples with two elements
8383
```
8484

85-
Most Elixir code has a straight-forward translation to its underlying quoted expression. We recommend you try out different code samples and see what the results are. For example, what does `String.upcase("foo")` expand to? We have also learned that `if(true, do: this, else: that)` is the same as `if true do this else that end`. How does this affirmation hold with quoted expressions?
85+
Most Elixir code has a straight-forward translation to its underlying quoted expression. We recommend you try out different code samples and see what the results are. For example, what does `String.upcase("foo")` expand to? We have also learned that `if(true, do: :this, else: :that)` is the same as `if true do :this else :that end`. How does this affirmation hold with quoted expressions?
8686

8787
## 1.2 Unquoting
8888

0 commit comments

Comments
 (0)