diff --git a/basic_ds.go b/basic_ds.go index 95f03fe..2a93064 100644 --- a/basic_ds.go +++ b/basic_ds.go @@ -97,7 +97,7 @@ type NullDatastore struct { var _ Datastore = (*NullDatastore)(nil) var _ Batching = (*NullDatastore)(nil) -// NewNullDatastore constructs a null datastoe +// NewNullDatastore constructs a null datastore func NewNullDatastore() *NullDatastore { return &NullDatastore{} }