Skip to content

Commit

Permalink
fix(Linting): Fix linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
nfroidure committed Jul 15, 2017
1 parent 2613283 commit e9d0bf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ function SVGIcons2SVGFontStream(options) {
' to unexpected results. Using the normalize option could' +
' solve the problem.');
}
if(fontHeight < 1000) {
if(1000 > fontHeight) {
log('The fontHeight should larger than 1000 or it will be converted ' +
'into the wrong shape. Using the "normalize" and "fontHeight"' +
' options can solve the problem.');
Expand Down

0 comments on commit e9d0bf6

Please sign in to comment.