summaryrefslogtreecommitdiffstats
path: root/core/channel.go
diff options
context:
space:
mode:
authorRastislav Szabo <raszabo@cisco.com>2019-01-31 07:28:52 +0000
committerGerrit Code Review <gerrit@fd.io>2019-01-31 07:28:52 +0000
commiteb571ee5c0cf5a5194d6ae9aaa0be6e24ea2a943 (patch)
tree2743ea4285fe8dd9ffbc243b76441e8ca695c0e2 /core/channel.go
parentf1f9fe44d54eec75f6484d0b91769204b6812fb5 (diff)
parent6476a2b64a2e1ea6c0d695127d726a348cc5c99b (diff)
Merge "Generator improvements"
Diffstat (limited to 'core/channel.go')
-rw-r--r--core/channel.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/channel.go b/core/channel.go
index a7d95fe..5b69eab 100644
--- a/core/channel.go
+++ b/core/channel.go
@@ -31,7 +31,7 @@ var (
// MessageCodec provides functionality for decoding binary data to generated API messages.
type MessageCodec interface {
- //EncodeMsg encodes message into binary data.
+ // EncodeMsg encodes message into binary data.
EncodeMsg(msg api.Message, msgID uint16) ([]byte, error)
// DecodeMsg decodes binary-encoded data of a message into provided Message structure.
DecodeMsg(data []byte, msg api.Message) error