Skip to content

Commit d515cb7

Browse files
Update matlab/src/matlab/+arrow/+tabular/Table.m
Co-authored-by: Kevin Gurney <[email protected]>
1 parent 2b82bbc commit d515cb7

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
@@ -153,7 +153,7 @@ function displayScalarObject(obj)
153153
msg = "The fromRecordBatches method requires at least one RecordBatch to be supplied.";
154154
error("arrow:Table:FromRecordBatches:ZeroBatches", msg);
155155
elseif numel(batches) > 1
156-
% Verify the RecordBatches have consistent Schema values.
156+
% Verify that all supplied RecordBatches have a consistent Schema.
157157
firstSchema = batches{1}.Schema;
158158
otherSchemas = cellfun(@(rb) rb.Schema, batches(2:end), UniformOutput=false);
159159
idx = cellfun(@(other) ~isequal(firstSchema, other), otherSchemas, UniformOutput=true);

0 commit comments

Comments
 (0)