diff options
author | Daniel Hodan <daniel.hodan@czertbytes.de> | 2014-09-11 12:20:32 +0200 |
---|---|---|
committer | Daniel Hodan <daniel.hodan@czertbytes.de> | 2014-09-11 12:20:32 +0200 |
commit | e2885a8ff8017ab727114fb7190b9156e4bbff4c (patch) | |
tree | 0929275c55b3843ac4f95e99b73c49158fac0df7 | |
parent | faa297157a80f4aeac2681ebd5ba2edc11f07fa7 (diff) |
Fix typo in words calculate and area, one more
-rw-r--r-- | erlang.html.markdown | 2 |
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 |