Skip to content

Commit dc92b83

Browse files
committed
fix typo
1 parent 19af862 commit dc92b83

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

js/src/vector.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ export class DictionaryVector<T extends DataType = DataType> extends Vector<Dict
403403
view = (view as any).view;
404404
}
405405
if (data instanceof DictionaryData && view instanceof DictionaryView) {
406-
this.indices = view.indices;
406+
this.indices = view.indicies;
407407
this.dictionary = data.dictionary;
408408
} else if (data instanceof ChunkedData && view instanceof ChunkedView) {
409409
const chunks = view.chunkVectors as DictionaryVector<T>[];

0 commit comments

Comments
 (0)