Skip to content

Commit

Permalink
Move help text for arrow.list construction function above license
Browse files Browse the repository at this point in the history
header.
  • Loading branch information
kevingurney committed Oct 11, 2023
1 parent 9f739b6 commit bb8f042
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions matlab/src/matlab/+arrow/list.m
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
%LIST Creates an arrow.type.ListType object

% Licensed to the Apache Software Foundation (ASF) under one or more
% contributor license agreements. See the NOTICE file distributed with
% this work for additional information regarding copyright ownership.
Expand All @@ -12,9 +14,7 @@
% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
% implied. See the License for the specific language governing
% permissions and limitations under the License.

function l = list(type)
%LIST Creates an arrow.type.ListType object
arguments
type(1, 1) arrow.type.Type
end
Expand All @@ -23,4 +23,4 @@
args = struct(TypeProxyID=typeProxyID);
proxy = arrow.internal.proxy.create("arrow.type.proxy.ListType", args);
l = arrow.type.ListType(proxy);
end
end

0 comments on commit bb8f042

Please sign in to comment.