Skip to content

Commit 95228d8

Browse files
committed
Fix typo
1 parent 8c53ba1 commit 95228d8

File tree

1 file changed

+1
-1
lines changed
  • matlab/src/matlab/+arrow/+tabular

1 file changed

+1
-1
lines changed

matlab/src/matlab/+arrow/+tabular/Table.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ function displayScalarObject(obj)
162162
inconsistentSchemaIndex = inconsistentSchemaIndex + 1;
163163
expectedSchema = arrow.tabular.internal.display.getSchemaString(firstSchema);
164164
inconsistentSchema = arrow.tabular.internal.display.getSchemaString(batches{inconsistentSchemaIndex}.Schema);
165-
msg = "All RecordBatches must have a the same Schema.\n\nSchema of RecordBatch %d is\n\n\t%s\n\nExpected RecordBatch Schema to be\n\n\t%s";
165+
msg = "All RecordBatches must have the same Schema.\n\nSchema of RecordBatch %d is\n\n\t%s\n\nExpected RecordBatch Schema to be\n\n\t%s";
166166
msg = compose(msg, inconsistentSchemaIndex, inconsistentSchema, expectedSchema);
167167
error("arrow:Table:FromRecordBatches:InconsistentSchema", msg);
168168
end

0 commit comments

Comments
 (0)