Skip to content

Commit

Permalink
fix(rtl): Fix typo in error message and make it more readable (#1956)
Browse files Browse the repository at this point in the history
  • Loading branch information
acdvorak authored Jan 19, 2018
1 parent ab72daf commit 6e4432c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/mdc-rtl/_mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
*/
@mixin mdc-rtl-reflexive-box($base-property, $default-direction, $value, $root-selector: null) {
@if (index((right, left), $default-direction) == null) {
@error "Invalid default direction #{default-direction}. Please specifiy either right or left";
@error "Invalid default direction: '#{$default-direction}'. Please specifiy either 'right' or 'left'.";
}

$left-value: $value;
Expand Down

0 comments on commit 6e4432c

Please sign in to comment.