Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenvd committed May 3, 2021
1 parent d535c38 commit ed71ad6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utility/periodicarray.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ end
PeriodicArray{T}(initializer, args...) where T =
PeriodicArray(Array{T}(initializer, args...))
PeriodicArray{T,N}(initializer, args...) where {T,N} =
PeriodicArray(Array{T,N}(undef, args...))
PeriodicArray(Array{T,N}(initializer, args...))

Base.size(a::PeriodicArray) = size(a.data)
Base.size(a::PeriodicArray,i) = size(a.data,i)
Expand Down

2 comments on commit ed71ad6

@maartenvd
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/36501

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.5.0 -m "<description of version>" ed71ad6a3ccc99eb57ec9cee23e04f748d2fbe4e
git push origin v0.5.0

Please sign in to comment.