Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nsajko authored and giordano committed Jan 5, 2025
1 parent fd2b298 commit b50c88f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/FixedSizeBitArray.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ struct FixedSizeBitArray{N} <: AbstractArray{Bool,N}
function FixedSizeBitArray{N}(::Internal, size::NTuple{N,Int}) where {N}
nc = num_bit_chunks(size)
chunks = Memory{UInt64}(undef, nc)
# we want the last chunks to be zerod and it's easier to just zero all of them
copyto!(chunks UInt64(0))
# we want the last chunks to be zeroed and it's easier to just zero all of them
copyto!(chunks, UInt64(0))
new{N}(chunks, size)
end
end
Expand Down

0 comments on commit b50c88f

Please sign in to comment.