From 3c565a5535d7f6fb788b2a7b719262dd1a88720b Mon Sep 17 00:00:00 2001 From: nomatteus Date: Mon, 30 Mar 2015 16:13:26 -0400 Subject: Fix syntax error: Remove semicolon from last branch of erlang if-expression. http://erlang.org/doc/reference_manual/expressions.html#id78310 --- erlang.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.2.3