Replace Array{T, 1}
with Vector{T}
and Array{T, 2}
with Matrix{T}
#56922
Labels
docs
This change adds or pertains to documentation
help wanted
Indicates that a maintainer wants help on an issue or pull request
There are still usages of
Array{T, 1}
throughout the codebase. In some rare cases they are intentional but in many cases this is a holdover from very old versions of Julia. Especially in example output we should pretty much always be usingVector
andMatrix
rather thanArray{T, 1}
andArray{T, 2}
.Tagging with the docs label because it is most important to fix this for documentation and less important (if at all) to make the change in source code.
The text was updated successfully, but these errors were encountered: