From 5e2a864d5cc52016b3dc14983ae01e2062ecd7ba Mon Sep 17 00:00:00 2001 From: Nicolas Coden Date: Tue, 20 Dec 2016 22:55:54 +0100 Subject: [PATCH] Use interpolation to concatenate strings in direction-opposite --- scss/util/_direction.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/util/_direction.scss b/scss/util/_direction.scss index eb600f0fd..98a868aa0 100644 --- a/scss/util/_direction.scss +++ b/scss/util/_direction.scss @@ -17,7 +17,7 @@ $place: index($dirs, $dir); @if $place == null { - @error 'direction-opposite: Invalid $dir parameter, expected a value from "' + $dirs + '", found "' + $dir + '".'; + @error 'direction-opposite: Invalid $dir parameter, expected a value from "#{$dirs}", found "#{$dir}".'; @return null; } -- 2.47.2