fix spelling and godoc comments

This commit is contained in:
Vsevolod Brekelov 2019-10-22 17:56:03 +03:00
parent f1750d117b
commit 8ee421db14
63 changed files with 179 additions and 179 deletions

View file

@ -10,7 +10,7 @@ import (
type Header struct {
// Base of the block.
BlockBase
// Padding that is fixed to 0
// Padding that is fixed to 0.
_ uint8
}
@ -26,7 +26,7 @@ func (h *Header) DecodeBinary(r *io.BinReader) {
}
}
// EncodeBinary implements Serializable interface.
// EncodeBinary implements Serializable interface.
func (h *Header) EncodeBinary(w *io.BinWriter) {
h.BlockBase.EncodeBinary(w)
w.WriteLE(uint8(0))