authorgravatar for git@l4.pmLuna <git@l4.pm> 2020-03-27 22:31:40-03:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-03-28 12:01:29-04:00
log2028b4ce9127c3c6e439183f2f9313ec47eb7d62
treec7349c0777e4b73f05d8b16c947d654b9f1db8df
parentd788b0cd8b0b12ec4f3dddf4ecdb59556b73d4c2

Fix typo in Serializer declaration


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

lib/std/io/serialization.zig+1-1
......@@ -209,7 +209,7 @@ pub fn deserializer(
209209/// to the serializer struct.
210210pub fn Serializer(comptime endian: builtin.Endian, comptime packing: Packing, comptime OutStreamType: type) type {
211211 return struct {
212 out_stream: if (packing == .Bit) BitOutStream(endian, OutStreamType) else OutStreamType,
212 out_stream: if (packing == .Bit) io.BitOutStream(endian, OutStreamType) else OutStreamType,
213213
214214 const Self = @This();
215215 pub const Error = OutStreamType.Error;