Typo: fix typo in processDataFrame.ts comment (#18492)

This commit is contained in:
Šimon Podlipský 2019-08-12 06:43:54 +02:00 committed by Ryan McKinley
parent b3d2cc3e2f
commit 8b0bbb2c4f

View File

@ -148,7 +148,7 @@ export const toDataFrame = (data: any): DataFrame => {
if (data.hasOwnProperty('columns')) {
return convertTableToDataFrame(data);
}
// TODO, try to convert JSON/Array to seriesta?
// TODO, try to convert JSON/Array to table?
console.warn('Can not convert', data);
throw new Error('Unsupported data format');
};