chore: typo

This commit is contained in:
cha0s 2022-03-14 13:46:13 -05:00
parent 8890ea33d3
commit da9ba63020

View File

@ -17,7 +17,7 @@ export default class Socket {
const [type, Packet] = Packets[i];
this.socket.on(Packet.id, (data, fn) => {
const packet = new Packet(Packet.decode(Buffer.from(data)));
debug('recieved packet %s(%j)', type, data);
debug('received packet %s(%j)', type, data);
this.emit('packet', packet, fn);
});
}