Skip to content

Commit

Permalink
Fix error in chunk() method
Browse files Browse the repository at this point in the history
  • Loading branch information
sgilmore10 committed Aug 31, 2023
1 parent 50f008b commit b4b2133
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion matlab/src/matlab/+arrow/+array/ChunkedArray.m
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
type = traits.TypeConstructor(proxy);
end

function array = chunk(index)
function array = chunk(obj, index)
[typeID, proxyID] = obj.Proxy.getChunk(index);
traits = arrow.type.traits.traits(arrow.type.ID(typeID));
proxy = libmexclass.proxy.Proxy(Name=traits.ArrayProxyClassName, ID=proxyID);
Expand Down

0 comments on commit b4b2133

Please sign in to comment.