From b89617f99ca9b59efb4a07d031fa7217ce13797c Mon Sep 17 00:00:00 2001 From: Oh-Hyun Kwon Date: Wed, 4 Dec 2024 11:46:03 -0500 Subject: [PATCH] fix typo --- packages/core/src/util/js-type.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/util/js-type.js b/packages/core/src/util/js-type.js index e426199c..cd28f8ee 100644 --- a/packages/core/src/util/js-type.js +++ b/packages/core/src/util/js-type.js @@ -2,7 +2,7 @@ * Maps a SQL data type to its corresponding JavaScript type. * @param {string} type The name of a SQL data type * @returns The corresponding JavaScript type name - * @throws {Error} Throws an error if the give SQL type name is unsupported or unrecognized. + * @throws {Error} Throws an error if the given SQL type name is unsupported or unrecognized. */ export function jsType(type) { switch (type) {