Skip to content

Commit 3ededde

Browse files
committed
fixed examples
1 parent d4cb69d commit 3ededde

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ To delete an existing collection on the server, use the drop() method of the Col
461461

462462
```php
463463
// delete a collection on the server, using it's name,
464-
$result = $handler->drop('users');
464+
$result = $collectionHandler->drop('users');
465465
var_dump($result);
466466
```
467467

@@ -572,7 +572,7 @@ try {
572572

573573

574574
// delete a collection on the server, using it's name,
575-
$result = $handler->drop('users');
575+
$result = $collectionHandler->drop('users');
576576
var_dump($result);
577577
}
578578
catch (ArangoConnectException $e) {

0 commit comments

Comments
 (0)