Skip to content

Commit b50c88f

Browse files
nsajkogiordano
authored andcommitted
typo
1 parent fd2b298 commit b50c88f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/FixedSizeBitArray.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ struct FixedSizeBitArray{N} <: AbstractArray{Bool,N}
1010
function FixedSizeBitArray{N}(::Internal, size::NTuple{N,Int}) where {N}
1111
nc = num_bit_chunks(size)
1212
chunks = Memory{UInt64}(undef, nc)
13-
# we want the last chunks to be zerod and it's easier to just zero all of them
14-
copyto!(chunks UInt64(0))
13+
# we want the last chunks to be zeroed and it's easier to just zero all of them
14+
copyto!(chunks, UInt64(0))
1515
new{N}(chunks, size)
1616
end
1717
end

0 commit comments

Comments
 (0)