Skip to content

Commit

Permalink
fix extserialize example
Browse files Browse the repository at this point in the history
  • Loading branch information
bclrk authored Mar 11, 2024
1 parent b7a622b commit 7d779c5
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 7d779c5

Please sign in to comment.