Skip to content

Commit

Permalink
Rename timeClasses to dateClasses.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevingurney committed Aug 29, 2023
1 parent 39edb7f commit 5e2f823
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@
timeClasses = compose("arrow.array.Time%dArray", [32 64]);
end

function timeClasses = getDateArrayClasses()
timeClasses = compose("arrow.array.Date%dArray", 32);
function dateClasses = getDateArrayClasses()
dateClasses = compose("arrow.array.Date%dArray", 32);
end

function number = randomNumbers(numberType, numElements)
Expand All @@ -116,4 +116,4 @@
function dates = randomDatetimes(numElements)
day = days(randi(255, [numElements 1]));
dates = datetime(2023, 8, 23) + day;
end
end

0 comments on commit 5e2f823

Please sign in to comment.