From 0a1a0abb6317c70aecc707e21779f8dca249583a Mon Sep 17 00:00:00 2001 From: ken0nek Date: Fri, 4 Dec 2015 16:40:49 +0900 Subject: [PATCH] Remove needless equal symbol --- stdlib/public/core/Algorithm.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/public/core/Algorithm.swift b/stdlib/public/core/Algorithm.swift index 770971bec5bb9..74949b572bded 100644 --- a/stdlib/public/core/Algorithm.swift +++ b/stdlib/public/core/Algorithm.swift @@ -92,7 +92,7 @@ public func max(x: T, _ y: T, _ z: T, _ rest: T...) -> T { r = z } for t in rest { - if t >= r { + if t > r { r = t } }