From 0c17c9c151fd882d7bf78bb334579935d5d114b5 Mon Sep 17 00:00:00 2001 From: Kaelig Date: Sun, 21 Feb 2016 10:01:33 -0800 Subject: [PATCH] Simplify function call --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2879668..c7469d0 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ For advanced SemVer support in the form of `Major.Minor.Patch-beta/alpha/rc.1`, @import 'node_modules/sass-semver/index'; @function deprecate-version-greater-than($version, $app-version) { - @return call(gt, $v1: $version, $v2: $app-version); + @return gt($v1: $version, $v2: $app-version); } @import 'path-to/sass-deprecate/index';