From 654193989bc7c67daa4143eac6c06c3553bf07bc Mon Sep 17 00:00:00 2001 From: Anton Avramov Date: Sat, 20 Jul 2019 11:15:07 -0400 Subject: [PATCH] Fix mispelled counted key for INTEGER --- lib/guess-model.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/guess-model.js b/lib/guess-model.js index 923e0af..9f28356 100644 --- a/lib/guess-model.js +++ b/lib/guess-model.js @@ -139,7 +139,7 @@ function dataToType(data, name, tablesOptions = {}) { kind = top.kind; } // If there is an integer and a float, use float - else if (counted.INTGER && counted.FLOAT) { + else if (counted.INTEGER && counted.FLOAT) { kind = 'FLOAT'; } else {