fix spelling and godoc comments
This commit is contained in:
parent
f1750d117b
commit
8ee421db14
63 changed files with 179 additions and 179 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue