Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Misc Typo Fixes #131

Merged
merged 2 commits into from
Jun 30, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion datastore.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ type CheckedDatastore interface {
Check() error
}

// CheckedDatastore is an interface that should be implemented by datastores
// ScrubbedDatastore is an interface that should be implemented by datastores
// which want to provide a mechanism to check data integrity and/or
// error correction.
type ScrubbedDatastore interface {
Expand Down
2 changes: 1 addition & 1 deletion examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ go-datastore interface, there are several implementations you can choose from:
good for big blobs, though may be missing few features (some iteration
settings don't work).
* https://github.com/ipfs/go-ds-leveldb - Datastore implementation backed
by LevelDB database. Geed for small-size values and many keys.
by LevelDB database. Good for small-size values and many keys.
* https://github.com/ipfs/go-ds-badger - A fast datastore implementation
backed by BadgerDB. Good for most kinds of data.