From 73937e789a340b291b2b49a9e0423d31b402c59a Mon Sep 17 00:00:00 2001 From: error Date: Fri, 21 Feb 2014 17:18:32 -0600 Subject: [PATCH] fix parameter to max() --- functions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.cpp b/functions.cpp index b4d8abaa5b..a7f9377f8f 100644 --- a/functions.cpp +++ b/functions.cpp @@ -758,7 +758,7 @@ namespace Sass { return least; } - Signature max_sig = "max($x2, $x2...)"; + Signature max_sig = "max($x1, $x2...)"; BUILT_IN(max) { Number* x1 = ARG("$x1", Number);