Skip to content

Commit

Permalink
Simplify function call
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaelig committed Feb 21, 2016
1 parent 01c45d1 commit 0c17c9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit 0c17c9c

Please sign in to comment.