From e9d0bf66e0af872d6ca35e228b023521af6c7410 Mon Sep 17 00:00:00 2001 From: Nicolas Froidure Date: Sat, 15 Jul 2017 12:53:29 +0200 Subject: [PATCH] fix(Linting): Fix linting error --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index 98ba0fa..52dfaef 100755 --- a/src/index.js +++ b/src/index.js @@ -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.');