Skip to content

Commit d8d58e6

Browse files
authored
Merge pull request #121 from dsaxton/fix-error-typo
Fix typo in error message
2 parents b4263c3 + 024845b commit d8d58e6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

danfojs/src/core/generic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ export default class NDframe {
102102
) {
103103
this.columns = this.kwargs["columns"];
104104
} else {
105-
throw `Column length mismatch. You provided a column of length ${this.kwargs["columns"].length} but data has lenght of ${this.row_data_tensor.shape[1]}`;
105+
throw `Column length mismatch. You provided a column of length ${this.kwargs["columns"].length} but data has length of ${this.row_data_tensor.shape[1]}`;
106106
}
107107
} else {
108108
this.columns = [ ...Array(this.row_data_tensor.shape[1]).keys() ];

0 commit comments

Comments
 (0)