Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
sgilmore10 committed Oct 11, 2023
1 parent 35b7287 commit 4f74ae9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function validateArrayLengths(arrowArrays)
for ii = 2:numel(arrowArrays)
if arrowArrays{ii}.NumElements ~= expectedNumElements
errid = "arrow:tabular:UnequalArrayLengths";
msg = compose("Expected all arrays to %d elements," + ...
msg = compose("Expected all arrays to have %d elements," + ...
" but the array at position %d has %d elements.", ...
expectedNumElements, ii, arrowArrays{ii}.NumElements);
error(errid, msg);
Expand Down
2 changes: 1 addition & 1 deletion matlab/test/arrow/array/tChunkedArray.m
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ function ToMATLABTimestampType(testCase, TimeZone)
a2 = arrow.array(dates(6:5));
a3 = arrow.array(dates(6:end));

% ChunkedArray with three chunks and nonzero at least one element
% ChunkedArray with three chunks and at least one element
chunkedArray1 = ChunkedArray.fromArrays(a1, a2, a3);
actualArray1 = toMATLAB(chunkedArray1);
expectedArray1 = dates';
Expand Down

0 comments on commit 4f74ae9

Please sign in to comment.