Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Inspect function printing too many parenthesis #1565

Closed
KittyGiraudel opened this issue Dec 19, 2014 · 1 comment
Closed

Inspect function printing too many parenthesis #1565

KittyGiraudel opened this issue Dec 19, 2014 · 1 comment
Labels
bug Something isn't working

Comments

@KittyGiraudel
Copy link

Test:

$map: (
  'a': 1,
  'b': (
    'c': 'd'
  )
);

.test {
  content: inspect($map);
}

Expected:

.test {
  content: ("a": 1, "b": ("c": "d"));
}

Output:

.test {
  content: ("a": 1, "b": (("c": "d")));
}
jshawl added a commit to jshawl/sass that referenced this issue Dec 27, 2014
@nex3 nex3 added the bug Something isn't working label Jan 5, 2015
@nex3 nex3 closed this as completed in d5bf813 Jan 16, 2015
@KittyGiraudel
Copy link
Author

You rock

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
2 participants