We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 21d046f + e39aa4d commit c368763Copy full SHA for c368763
src/io.jl
@@ -1,7 +1,7 @@
1
##### Array{T} #####
2
using Mmap
3
4
-struct MMSer{T} end # sentinal type used in deserialize to switch to our
+struct MMSer{T} end # sentinel type used in deserialize to switch to our
5
# custom memory-mapping deserializers
6
7
can_mmap(io::IOStream) = true
@@ -93,7 +93,7 @@ end
93
94
##### Array{String} #####
95
96
-const UNDEF_LENGTH = typemax(UInt32) # if your string is exaclty 4GB you're out of luck
+const UNDEF_LENGTH = typemax(UInt32) # if your string is exactly 4GB you're out of luck
97
98
function mmwrite(io::AbstractSerializer, xs::Array{String})
99
Serialization.serialize_type(io, MMSer{typeof(xs)})
0 commit comments