Fix Comments (#1833)

* update store url

* fix leftover copy paste
This commit is contained in:
Alex Unger 2020-07-14 14:13:32 +02:00 committed by GitHub
parent a2bb0bea2d
commit 42c28f2b6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ var (
dataBucket = "data"
)
// NewStore returns a memory store
// NewStore returns a file store
func NewStore(opts ...store.Option) store.Store {
s := &fileStore{}
s.init(opts...)

View File

@ -1,5 +1,5 @@
// Package store is an interface for distributed data storage.
// The design document is located at https://github.com/micro/development/blob/master/design/store.md
// The design document is located at https://github.com/micro/development/blob/master/design/framework/store.md
package store
import (