Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upAllow disabling of invalid watchers #91
Conversation
@@ -134,13 +134,12 @@ | |||
abstract public function enable($watcherId); | |||
|
|||
/** | |||
* Disable a watcher. Disabling a watcher MUST NOT invalidate the watcher. | |||
* Disable a watcher. Disabling a watcher MUST NOT invalidate the watcher. Calling this function MUST never fail, |
kelunik
Aug 26, 2016
Member
MUST never
→ MUST NOT
MUST never
→ MUST NOT
bwoebi
Aug 26, 2016
Author
Member
I've copied from cancel() docs.
I've copied from cancel() docs.
kelunik
Aug 26, 2016
Member
Should probably fixed there as well. Otherwise you might miss the never
since only MUST
is bold.
Should probably fixed there as well. Otherwise you might miss the never
since only MUST
is bold.
@@ -134,13 +134,12 @@ | |||
abstract public function enable($watcherId); | |||
|
|||
/** | |||
* Disable a watcher. Disabling a watcher MUST NOT invalidate the watcher. | |||
* Disable a watcher. Disabling a watcher MUST NOT invalidate the watcher. Calling this function MUST never fail, | |||
* even when passed an invalid watcher. |
kelunik
Aug 26, 2016
Member
I guess this should be if
, not when
.
I guess this should be if
, not when
.
Fixes #90.
Following no dissent in the related issue, this should be merged in a few days if nobody else objects.