From 808ce32e3c94e8b83c2216a571adebe89b4ca811 Mon Sep 17 00:00:00 2001 From: Aaron Piotrowski Date: Thu, 2 Jun 2016 17:11:25 -0500 Subject: [PATCH] Fix leftover mentions of Disposable --- lib/Observer.php | 2 +- lib/Subscriber.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Observer.php b/lib/Observer.php index 68130fc..02345bf 100644 --- a/lib/Observer.php +++ b/lib/Observer.php @@ -98,7 +98,7 @@ final class Observer { } /** - * Disposes of the subscriber. + * Unsubscribes the internal subscriber from the observable. */ public function __destruct() { if (!$this->resolved) { diff --git a/lib/Subscriber.php b/lib/Subscriber.php index 4d6d397..5888a48 100644 --- a/lib/Subscriber.php +++ b/lib/Subscriber.php @@ -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 { /**