From 9b3ac14ae05a2f9cf88591f1c96aadee21fd9043 Mon Sep 17 00:00:00 2001 From: postables Date: Sun, 30 Jun 2019 10:00:36 -0700 Subject: [PATCH 1/2] datastore: updated ScrubbedDatastore comment --- datastore.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datastore.go b/datastore.go index eec1932..0cc3b9b 100644 --- a/datastore.go +++ b/datastore.go @@ -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 { From 1acbf912f6dc77fb2c2431dbdc20710458593f96 Mon Sep 17 00:00:00 2001 From: postables Date: Sun, 30 Jun 2019 10:05:08 -0700 Subject: [PATCH 2/2] examples: fix typo --- examples/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/README.md b/examples/README.md index ce4b7a4..693e23d 100644 --- a/examples/README.md +++ b/examples/README.md @@ -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.