diff options
author | Nami-Doc <vendethiel@hotmail.fr> | 2013-11-26 09:32:11 +0100 |
---|---|---|
committer | Nami-Doc <vendethiel@hotmail.fr> | 2013-11-26 09:32:11 +0100 |
commit | a36cee194b40dd59608d3e306e74e1b68ba9aa46 (patch) | |
tree | b3f12e4f338dde1683219f150767a477686e0b37 | |
parent | ec3343839fb3b7bc548eb5cab8c716c97753c51b (diff) |
fix #425
-rw-r--r-- | julia.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/julia.html.markdown b/julia.html.markdown index c3d2195b..d05e165d 100644 --- a/julia.html.markdown +++ b/julia.html.markdown @@ -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}(2,3,1) +Set(x...) #=> Set{Int64}(1,2,3) # You can define functions with optional positional arguments |