Skip to content

Commit

Permalink
Merge pull request #65 from bclrk/patch-2
Browse files Browse the repository at this point in the history
fix `extserialize` example
  • Loading branch information
sjkelly authored Mar 11, 2024
2 parents b7a622b + 7d779c5 commit c84c776
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types.jl
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ julia> struct Point{T}
julia> val = [Point(rand(), rand()) for _ in 1:100];
julia> bytes = MsgPack.pack(MsgPack.extserialize(123, x));
julia> bytes = MsgPack.pack(MsgPack.extserialize(123, val));
julia> type, new_val = MsgPack.extdeserialize(MsgPack.unpack(bytes));
Expand Down

0 comments on commit c84c776

Please sign in to comment.