Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kmp5VT committed Oct 23, 2023
1 parent 1a849c9 commit 297aaa2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NDTensors/src/UnallocatedArrays/src/unallocatedzeros.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ struct UnallocatedZeros{ElT,N,Axes,Alloc<:AbstractArray{ElT,N}} <:
new{ElT,N,ax,Alloc}(z)

Check warning on line 9 in NDTensors/src/UnallocatedArrays/src/unallocatedzeros.jl

View workflow job for this annotation

GitHub Actions / format

[JuliaFormatter] reported by reviewdog 🐶 Raw Output: NDTensors/src/UnallocatedArrays/src/unallocatedzeros.jl:9:- new{ElT,N,ax,Alloc}(z) NDTensors/src/UnallocatedArrays/src/unallocatedzeros.jl:9:+ return new{ElT,N,ax,Alloc}(z)
end

function UnallcoatedZeros{ElT,0,Tuple{},Alloc}(inds::Tuple{}) where{ElT,Alloc}
function UnallocatedZeros{ElT,0,Tuple{},Alloc}(inds::Tuple{}) where{ElT,Alloc}

Check warning on line 12 in NDTensors/src/UnallocatedArrays/src/unallocatedzeros.jl

View workflow job for this annotation

GitHub Actions / format

[JuliaFormatter] reported by reviewdog 🐶 Raw Output: NDTensors/src/UnallocatedArrays/src/unallocatedzeros.jl:12:- function UnallocatedZeros{ElT,0,Tuple{},Alloc}(inds::Tuple{}) where{ElT,Alloc} NDTensors/src/UnallocatedArrays/src/unallocatedzeros.jl:12:+ function UnallocatedZeros{ElT,0,Tuple{},Alloc}(inds::Tuple{}) where {ElT,Alloc}
z = FillArrays.Zeros(inds)
new{ElT,0,Tuple{},Alloc}(z)

Check warning on line 14 in NDTensors/src/UnallocatedArrays/src/unallocatedzeros.jl

View workflow job for this annotation

GitHub Actions / format

[JuliaFormatter] reported by reviewdog 🐶 Raw Output: NDTensors/src/UnallocatedArrays/src/unallocatedzeros.jl:14:- new{ElT,0,Tuple{},Alloc}(z) NDTensors/src/UnallocatedArrays/src/unallocatedzeros.jl:14:+ return new{ElT,0,Tuple{},Alloc}(z)
end
Expand Down

0 comments on commit 297aaa2

Please sign in to comment.