Fix dupicated typo into duplicated (#73351)

fix typos in transformation
This commit is contained in:
Sven Grossmann
2023-08-17 00:04:45 +03:00
committed by GitHub
parent cc1ea31616
commit 98f3b5fecb
2 changed files with 3 additions and 3 deletions
@@ -31,7 +31,7 @@ describe('align frames', () => {
});
// the following does not work for tabular joins where the joined on field value is duplicated
// the time will never have a dupicated time which is joined on
// the time will never have a duplicated time which is joined on
it('should perform an outer join', () => {
const out = joinDataFrames({ frames: [series1, series2] })!;
expect(
@@ -415,7 +415,7 @@ describe('align frames', () => {
it('supports duplicate times', () => {
//----------
// NOTE!!!
// * ideally we would *keep* dupicate fields
// * ideally we would *keep* duplicate fields
//----------
const series1 = toDataFrame({
fields: [
@@ -24,7 +24,7 @@ const modes = [
value: JoinMode.outerTabular,
label: 'OUTER (TABULAR)',
description:
'Join on a field value with dupicated values. Non performant outer join best used for tabular(SQL like) data.',
'Join on a field value with duplicated values. Non performant outer join best used for tabular(SQL like) data.',
},
{ value: JoinMode.inner, label: 'INNER', description: 'Drop rows that do not match a value in all tables.' },
];