@@ -50,7 +50,7 @@ impl<S> Storage for Cache<S>
where
S: Storage + Sync + Send,
{
- type Batch<'a> = batch::CacheBatch<'a, S::Batch<'a> >
+ type Batch<'a> = batch::CacheBatch<'a, S::Batch<'a>>
Self: 'a;
@@ -242,7 +242,7 @@ impl SQLite {
impl Storage for SQLite {
type Batch<'a> = Batch<'a>
- Self: 'a;
+ Self: 'a;
async fn begin<'a>(&'a self) -> Result<Self::Batch<'a>, Error> {
self.db