authorgravatar for tgschultz@gmail.comtgschultz <tgschultz@gmail.com> 2018-12-09 20:59:51-06:00
committergravatar for tgschultz@gmail.comtgschultz <tgschultz@gmail.com> 2018-12-09 20:59:51-06:00
log1a8570403f070933842db7739e7139779b7e04a5
treef5ee15f6f143d108b4f1803166a16c8757badbc1
parent1188da926ff4cddd5818d85d45b087f6207dfef9

Minor doc-comment fix.


1 files changed, 1 insertions(+), 1 deletions(-)

std/io.zig+1-1
...@@ -1243,7 +1243,7 @@ pub fn Deserializer(endian: builtin.Endian, is_packed: bool, comptime Error: typ...@@ -1243,7 +1243,7 @@ pub fn Deserializer(endian: builtin.Endian, is_packed: bool, comptime Error: typ
1243/// endianess, after which data will resume being written at the next byte boundary.1243/// endianess, after which data will resume being written at the next byte boundary.
1244/// Types may implement a custom serialization routine with a1244/// Types may implement a custom serialization routine with a
1245/// function named `serialize` in the form of:1245/// function named `serialize` in the form of:
1246/// pub fn serialize(self: *const Self, serializer: var) !void1246/// pub fn serialize(self: Self, serializer: var) !void
1247/// which will be called when the serializer is used to serialize that type. It will1247/// which will be called when the serializer is used to serialize that type. It will
1248/// pass a const pointer to the type instance to be serialized and a pointer1248/// pass a const pointer to the type instance to be serialized and a pointer
1249/// to the serializer struct.1249/// to the serializer struct.