Skip to content

Commit

Permalink
Merge pull request #25 from JuliaIO/fbot/deps
Browse files Browse the repository at this point in the history
Fix deprecations
  • Loading branch information
kmsquire authored Aug 10, 2018
2 parents b804a05 + f985b34 commit 9617b3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ The MsgPack spec [defines](https://github.com/msgpack/msgpack/blob/master/spec.m
It is defined like so

```julia
immutable Ext
struct Ext
typecode::Int8
data::Vector{Uint8}
end
Expand Down Expand Up @@ -110,7 +110,7 @@ MsgPack.Ext(-43,UInt8[0x01,0x05,0x03,0x09])
MsgPack.jl also defines the `extserialize` and `extdeserialize` convenience functions. These functions can turn an arbitrary object into an `Ext` and vice-versa.

```julia
julia> type Point{T}
julia> mutable struct Point{T}
x::T
y::T
end
Expand Down

0 comments on commit 9617b3c

Please sign in to comment.