summaryrefslogtreecommitdiffhomepage
path: root/erlang.html.markdown
diff options
context:
space:
mode:
authorVojta Svoboda <vojtasvoboda.cz@gmail.com>2015-10-07 14:26:18 +0200
committerVojta Svoboda <vojtasvoboda.cz@gmail.com>2015-10-07 14:26:18 +0200
commitbff40e2f9816974abd29322f2a50455f51acd22e (patch)
tree01177dd231841fea5dea3aa6546fde8d6630f5d3 /erlang.html.markdown
parent6dabd9568d2a99e7bbc079d0466588bf68a42283 (diff)
parent5c677e8071291520297ef3d5d8374c6d11285744 (diff)
Merge branch 'master' into translation/brainfuck-cs
Diffstat (limited to 'erlang.html.markdown')
-rw-r--r--erlang.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/erlang.html.markdown b/erlang.html.markdown
index 48cee6ec..4e2f1d84 100644
--- a/erlang.html.markdown
+++ b/erlang.html.markdown
@@ -35,7 +35,7 @@ Num = 43. % ** exception error: no match of right hand side value 43
% In most languages, `=` denotes an assignment statement. In Erlang, however,
% `=` denotes a pattern-matching operation. When an empty variable is used on the
% left hand side of the `=` operator to is bound (assigned), but when a bound
-% varaible is used on the left hand side the following behaviour is observed.
+% variable is used on the left hand side the following behaviour is observed.
% `Lhs = Rhs` really means this: evaluate the right side (`Rhs`), and then
% match the result against the pattern on the left side (`Lhs`).
Num = 7 * 6.