From baa195583c8f50494c15c82bfae9a5e3b2c5363a Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Sat, 24 Jun 2017 17:53:09 +0900 Subject: [PATCH] docs: fix type annotation --- src/data.convert.utils.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/data.convert.utils.js b/src/data.convert.utils.js index e922b1c..ff7f18c 100644 --- a/src/data.convert.utils.js +++ b/src/data.convert.utils.js @@ -1,9 +1,9 @@ import { isUndefined } from './util'; /** - * Converts the rows to data. + * Converts the rows to normalized data. * @param {any[][]} rows The row data - * @return {any[][]} + * @return {Object[]} */ export const convertRowsToData = (rows) => { const newRows = []; @@ -23,9 +23,9 @@ export const convertRowsToData = (rows) => { }; /** - * Converts the columns to data. + * Converts the columns to normalized data. * @param {any[][]} columns The column data - * @return {any[][]} + * @return {Object[]} */ export const convertColumnsToData = (columns) => { const newRows = [];