Skip to content

Commit

Permalink
Corrects typo in function.
Browse files Browse the repository at this point in the history
  • Loading branch information
AMJones committed Nov 29, 2017
1 parent 8c5eed7 commit b5882d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"css"
],
"homepage": "https://www.github.com/strapless/base",
"version": "1.1.1",
"version": "1.1.2",
"authors": [
{
"name": "Aaron M Jones",
Expand Down
2 changes: 1 addition & 1 deletion scss/functions/_getset.scss
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
@error "The component `#{$c}` does not have individual features.";
} @else {
$fKey: quote($f);
@if not(map-has-key($component),$fKey) {
@if not(map-has-key($component,$fKey)) {
@error "The component `#{$c}` does not have a feature named `#{$f}`.";
} @else {
@return map-get($component, $fKey);
Expand Down

0 comments on commit b5882d1

Please sign in to comment.