summaryrefslogtreecommitdiffhomepage
path: root/julia.html.markdown
diff options
context:
space:
mode:
authorNami-Doc <vendethiel@hotmail.fr>2013-11-26 09:32:11 +0100
committerNami-Doc <vendethiel@hotmail.fr>2013-11-26 09:32:11 +0100
commita36cee194b40dd59608d3e306e74e1b68ba9aa46 (patch)
treeb3f12e4f338dde1683219f150767a477686e0b37 /julia.html.markdown
parentec3343839fb3b7bc548eb5cab8c716c97753c51b (diff)
fix #425
Diffstat (limited to 'julia.html.markdown')
-rw-r--r--julia.html.markdown2
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