Skip to content

Commit 0ab5739

Browse files
committed
Fixed typo
1 parent c13b6bb commit 0ab5739

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Actions/Action.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ public function deleteMultiple(string $database, array $data) : Promise
195195
{
196196
$delete = A\compose(A\partial(A\map, function (array $list) {
197197
return !is_array($list) ? $list : A\map(A\partialRight(A\extend, array('_deleted' => true)), $list);
198-
}), A\partial(self::_resolve, $this->loop, 'post', array('bulkdocs' => array('{db}' => $database))));
198+
}), A\partial(self::_resolve, $this->loop, 'post', array('bulkDocs' => array('{db}' => $database))));
199199

200200
return isset($data['docs']) ? $delete($data) : self::_reject('"docs" key is missing. Schema is {"docs": [{data}]}');
201201
}

0 commit comments

Comments
 (0)