From 3bc960034c867fd4255db3f80ddbe6f85901647b Mon Sep 17 00:00:00 2001 From: Nami-Doc Date: Tue, 3 Dec 2013 14:40:05 +0100 Subject: typos --- julia.html.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'julia.html.markdown') diff --git a/julia.html.markdown b/julia.html.markdown index d05e165d..d1e17a26 100644 --- a/julia.html.markdown +++ b/julia.html.markdown @@ -357,7 +357,7 @@ end # 2 # 3 -# Handle exceptions with a try/except block +# Handle exceptions with a try/catch block try error("help") catch e @@ -402,7 +402,7 @@ Set([1,2,3]...) #=> Set{Int64}(1,2,3) # this is equivalent to Set(1,2,3) x = (1,2,3) #=> (1,2,3) Set(x) #=> Set{(Int64,Int64,Int64)}((1,2,3)) # a Set of Tuples -Set(x...) #=> Set{Int64}(1,2,3) +Set(x...) #=> Set{Int64}(2,3,1) # You can define functions with optional positional arguments -- cgit v1.2.3