From 5a1577d7db7eb372593eeb841b1e2bdf48e5816f Mon Sep 17 00:00:00 2001 From: Eugene Date: Sat, 23 Dec 2017 13:50:26 -0600 Subject: [PATCH] typos --- app/store/bolt.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/store/bolt.go b/app/store/bolt.go index 052be870..f5e8030b 100644 --- a/app/store/bolt.go +++ b/app/store/bolt.go @@ -60,7 +60,7 @@ func (b *BoltDB) Create(comment Comment) (string, error) { return errors.Errorf("key %s already in store", comment.ID) } - // serialise comment to json's []byte for bolt and save + // serialize comment to json []byte for bolt and save jdata, jerr := json.Marshal(&comment) if jerr != nil { return errors.Wrap(jerr, "can't marshal comment")