1
0
mirror of https://github.com/danog/amp.git synced 2025-01-21 21:01:16 +01:00

Fix leftover mentions of Disposable

This commit is contained in:
Aaron Piotrowski 2016-06-02 17:11:25 -05:00
parent 548a9fd556
commit 808ce32e3c
2 changed files with 2 additions and 2 deletions

View File

@ -98,7 +98,7 @@ final class Observer {
}
/**
* Disposes of the subscriber.
* Unsubscribes the internal subscriber from the observable.
*/
public function __destruct() {
if (!$this->resolved) {

View File

@ -5,7 +5,7 @@ namespace Amp;
use Interop\Async\Awaitable;
/**
* Disposable implementation returned from implementors of \Amp\Observable.
* Subscriber implementation returned from implementors of \Amp\Observable.
*/
final class Subscriber implements Awaitable {
/**