Skip to content

Commit

Permalink
Fixed a minor issue in walk function
Browse files Browse the repository at this point in the history
  • Loading branch information
KittyGiraudel committed Jan 4, 2017
1 parent 275b7df commit 9af0042
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion stylesheets/functions/_walk.scss
Expand Up @@ -27,7 +27,8 @@
}

@each $index, $value in sl-to-map($list) {
$list: set-nth($list, $index, call($function, $value, $args...));
$arguments: join($value, $args);
$list: set-nth($list, $index, call($function, $arguments...));
}

@return sl-to-list($list);
Expand Down

0 comments on commit 9af0042

Please sign in to comment.