summaryrefslogtreecommitdiffhomepage
path: root/erlang.html.markdown
diff options
context:
space:
mode:
authorArnie97 <arnie97@gmail.com>2015-04-11 13:09:50 +0800
committerArnie97 <arnie97@gmail.com>2015-04-11 13:09:50 +0800
commitc7f085ee34ebce89e523b10a56f9f6d5b1e4cd3a (patch)
tree7739ad481e099b59dd0393c61e898c51c35f9356 /erlang.html.markdown
parentc38d8d93135561e8c0afbe20a5b16b39917ee06c (diff)
parentf0540b93b16311ca39cf4f0ad5a9abf8dc13f223 (diff)
Merge pull request #1 from adambard/master
Fetch updates from upstream
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 04086aeb..a7390c3e 100644
--- a/erlang.html.markdown
+++ b/erlang.html.markdown
@@ -206,7 +206,7 @@ max(X, Y) ->
if
X > Y -> X;
X < Y -> Y;
- true -> nil;
+ true -> nil
end.
% Warning: at least one of the guards in the `if` expression must evaluate to true;