Skip to content

Commit

Permalink
Fix comment in parseValid
Browse files Browse the repository at this point in the history
  • Loading branch information
sgilmore10 committed Sep 20, 2023
1 parent 5a2ef5d commit ad25036
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion matlab/src/matlab/+arrow/+internal/+validate/parseValid.m
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
end
else
% valid is a list of indices. Verify the indices are numeric,
% integers, and within the range 1 < indices < numElements.
% integers, and within the range [1, numElements]
validateattributes(valid, "numeric", {'integer', '>', 0, '<=', numElements});
% Create a logical vector that contains true values at the indices
% specified by opts.Valid.
Expand Down

0 comments on commit ad25036

Please sign in to comment.