stream/mts: renamed Format function for metadata to Encode

This commit is contained in:
saxon 2019-01-27 16:56:14 +10:30
parent 9171b56d31
commit 1be7e08b9e
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ func (m *Meta) Delete(key string) error {
return errors.New("Trying to delete map entry that doesn't exist") return errors.New("Trying to delete map entry that doesn't exist")
} }
func (m *Meta) Format() []byte { func (m *Meta) Encode() []byte {
// TODO: complete this // TODO: complete this
return []byte("someData") return []byte("someData")
} }