Skip to content

Commit 64f4de8

Browse files
authored
Fix typo in README (#174)
1 parent 1ccac39 commit 64f4de8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ implement methods for the following functions:
3232

3333
````julia
3434
Base.size(A::CustomDiskArray)
35-
readblock!(A::CustomDiskArray{T,N},aout,r::Vargarg{AbstractUnitRange,N})
36-
writeblock!(A::CustomDiskArray{T,N},ain,r::Vargarg{AbstractUnitRange,N})
35+
readblock!(A::CustomDiskArray{T,N},aout,r::Vararg{AbstractUnitRange,N})
36+
writeblock!(A::CustomDiskArray{T,N},ain,r::Vararg{AbstractUnitRange,N})
3737
````
3838

3939
Here `readblock!` will read a subset of array `A` in a hyper-rectangle defined by the unit ranges `r`. The results shall be written into `aout`. `writeblock!` should write the data given by `ain` into the (hyper-)rectangle of A defined by `r`

0 commit comments

Comments
 (0)