Remove $ from 'variable' in the @debug insight (#436)

This commit is contained in:
roydukkey 2020-03-03 15:52:54 -05:00 committed by GitHub
parent 29d12ede8b
commit 9d4c49a319
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,7 +3,7 @@
@mixin syntax-colors($args...) {
@debug meta.keywords($args);
// (string: #080, comment: #800, $variable: $60b)
// (string: #080, comment: #800, variable: $60b)
@each $name, $color in meta.keywords($args) {
pre span.stx-#{$name} {
@ -22,7 +22,7 @@
@mixin syntax-colors($args...)
@debug meta.keywords($args)
// (string: #080, comment: #800, $variable: $60b)
// (string: #080, comment: #800, variable: $60b)
@each $name, $color in meta.keywords($args)
pre span.stx-#{$name}