Skip to content

Commit

Permalink
Adjust PHPDoc to match the rest of async-interop
Browse files Browse the repository at this point in the history
  • Loading branch information
kelunik committed Dec 31, 2016
1 parent bbfb6bd commit 957e6b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ interface Promise
*
* If the promise is already resolved, the callback MUST be executed immediately.
*
* @param callable(mixed $reason, mixed $value) <`$reason` shall be `null` on success, `$value` shall be `null` on failure>
* @param callable(mixed $reason, mixed $value) @onResolved `$reason` shall be `null` on success, `$value` shall be `null` on failure.
*
* @return void
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Promise.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ interface Promise
*
* If the promise is already resolved, the callback MUST be executed immediately.
*
* @param callable(mixed $reason, mixed $value) <`$reason` shall be `null` on success, `$value` shall be `null` on failure>
* @param callable(mixed $reason, mixed $value) @onResolved `$reason` shall be `null` on success, `$value` shall be `null` on failure.
*
* @return void
*/
Expand Down

0 comments on commit 957e6b0

Please sign in to comment.