[erlang-patches] [PATCH] Add missing semicolon to example code

Thomas Lange thomas@REDACTED
Thu Dec 19 18:24:02 CET 2013


Signed-off-by: Thomas Lange <thomas@REDACTED>
---
 system/doc/reference_manual/expressions.xml |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/system/doc/reference_manual/expressions.xml b/system/doc/reference_manual/expressions.xml
index e9de3e0..16a4a81 100644
--- a/system/doc/reference_manual/expressions.xml
+++ b/system/doc/reference_manual/expressions.xml
@@ -1177,7 +1177,7 @@ termize_file(Name) ->
 try Expr
 catch
     throw:Term -> Term;
-    exit:Reason -> {'EXIT',Reason}
+    exit:Reason -> {'EXIT',Reason};
     error:Reason -> {'EXIT',{Reason,erlang:get_stacktrace()}}
 end</code>
   </section>
-- 
1.7.10.4




More information about the erlang-patches mailing list