Skip to content

Commit a67fdc1

Browse files
PallHaraldssonKristofferC
authored andcommitted
Typo (#14)
Fix typos
1 parent 068f409 commit a67fdc1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/blockarray.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Note: Functions surrounded by a comment blocks are there because `Vararg` is sitll allocating.
2-
# When Vararg is fast enough, they can simply be removed
1+
# Note: Functions surrounded by a comment blocks are there because `Vararg` is still allocating.
2+
# When Vararg is fast enough, they can simply be removed.
33

44
##############
55
# BlockArray #
@@ -8,7 +8,7 @@
88
"""
99
BlockArray{T, N, R} <: AbstractBlockArray{T, N}
1010
11-
A `BlockArray` is an array where each block is stored contiguously. This means that insertions and retrival of blocks
11+
A `BlockArray` is an array where each block is stored contiguously. This means that insertions and retrieval of blocks
1212
can be very fast since no copying of data is needed.
1313
1414
In the type definition, `R` defines the array type that each block has, for example `Matrix{Float64}.
@@ -226,4 +226,4 @@ function Base.fill!(block_array::BlockArray, v)
226226
for block in block_array.blocks
227227
fill!(block, v)
228228
end
229-
end
229+
end

0 commit comments

Comments
 (0)