summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDaniel Hodan <daniel.hodan@czertbytes.de>2014-09-11 12:20:32 +0200
committerDaniel Hodan <daniel.hodan@czertbytes.de>2014-09-11 12:20:32 +0200
commite2885a8ff8017ab727114fb7190b9156e4bbff4c (patch)
tree0929275c55b3843ac4f95e99b73c49158fac0df7
parentfaa297157a80f4aeac2681ebd5ba2edc11f07fa7 (diff)
Fix typo in words calculate and area, one more
-rw-r--r--erlang.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/erlang.html.markdown b/erlang.html.markdown
index 58656982..04086aeb 100644
--- a/erlang.html.markdown
+++ b/erlang.html.markdown
@@ -274,7 +274,7 @@ calculateArea() ->
% Compile the module and create a process that evaluates `calculateArea` in the shell
c(calculateGeometry).
-CalculateArea = spawn(calculateGeometry, calculateAera, []).
+CalculateArea = spawn(calculateGeometry, calculateArea, []).
CalculateArea ! {circle, 2}. % 12.56000000000000049738
% The shell is also a process, you can use `self` to get the current pid