Skip to content

Commit

Permalink
Add a missing trailing "." to an error message
Browse files Browse the repository at this point in the history
Closes #775
  • Loading branch information
nex3 committed Jul 25, 2019
1 parent 382af49 commit d408a59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/visitor/serialize.dart
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ class _SerializeVisitor
_buffer.writeCharCode($lbracket);
} else if (value.asList.isEmpty) {
if (!_inspect) {
throw SassScriptException("() isn't a valid CSS value");
throw SassScriptException("() isn't a valid CSS value.");
}
_buffer.write("()");
return;
Expand Down

0 comments on commit d408a59

Please sign in to comment.