From a36cee194b40dd59608d3e306e74e1b68ba9aa46 Mon Sep 17 00:00:00 2001
From: Nami-Doc <vendethiel@hotmail.fr>
Date: Tue, 26 Nov 2013 09:32:11 +0100
Subject: fix #425

---
 julia.html.markdown | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'julia.html.markdown')

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
-- 
cgit v1.2.3