Fixed typos

This commit is contained in:
AlbertMoscow 2013-07-08 23:37:41 -07:00
parent 7555578053
commit 26adba17e1

View File

@ -33,7 +33,7 @@ and many more features.
# Atoms, that are literals, a constant with name. They start with `:`. # Atoms, that are literals, a constant with name. They start with `:`.
:hello # atom :hello # atom
# Tuples that are stored contigously in memory. # Tuples that are stored contiguously in memory.
{1,2,3} # tuple {1,2,3} # tuple
# We can access a tuple element with the `elem` function: # We can access a tuple element with the `elem` function:
@ -47,7 +47,7 @@ elem({1, 2, 3}, 0) #=> 1
head #=> 1 head #=> 1
tail #=> [2,3] tail #=> [2,3]
# In elixir, just like in erlang, the `=` denotes pattern matching and # In elixir, just like in Erlang, the `=` denotes pattern matching and
# not an assignment. # not an assignment.
# #
# This means that the left-hand side (pattern) is matched against a # This means that the left-hand side (pattern) is matched against a
@ -170,7 +170,7 @@ case {:one, :two} do
"This will match any value" "This will match any value"
end end
# It's common practive to assign a value to `_` if we don't need it. # It's common practice to assign a value to `_` if we don't need it.
# For example, if only the head of a list matters to us: # For example, if only the head of a list matters to us:
[head | _] = [1,2,3] [head | _] = [1,2,3]
head #=> 1 head #=> 1