Skip to content

Commit d7a3144

Browse files
committed
Fix typo in comment
1 parent 95228d8 commit d7a3144

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

matlab/test/arrow/tabular/tTable.m

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -666,7 +666,8 @@ function TestIsEqualFalse(testCase)
666666

667667
function FromRecordBatchesZeroInputsError(testCase)
668668
% Verify the arrow.tabular.Table.fromRecordBatches function
669-
% throws an `arrow:Table:FromRecordBatches:ZeroBatches` exception if called with zero input arguments.
669+
% throws an `arrow:Table:FromRecordBatches:ZeroBatches`
670+
% exception if called with zero input arguments.
670671
import arrow.tabular.Table
671672
fcn = @() Table.fromRecordBatches();
672673
testCase.verifyError(fcn, "arrow:Table:FromRecordBatches:ZeroBatches");
@@ -702,8 +703,9 @@ function FromRecordBatchesMultipleInputs(testCase)
702703

703704
function FromRecordBatchesInconsistentSchemaError(testCase)
704705
% Verify the arrow.tabular.Table.fromRecordBatches function
705-
% throws an `arrow:Table:FromRecordBatches:InconsistentSchem` exception if the Schemas of the provided
706-
% RecordBatches are inconsistent
706+
% throws an `arrow:Table:FromRecordBatches:InconsistentSchema`
707+
% exception if the Schemas of the provided RecordBatches are
708+
% inconsistent.
707709
import arrow.tabular.Table
708710
matlabTable1 = table("A", 1);
709711
matlabTable2 = table(2, "B");

0 commit comments

Comments
 (0)