Fix doc comment

This commit is contained in:
Aaron Piotrowski 2020-06-11 09:22:17 -05:00
parent 83e21f8699
commit dbd1284c9c
No known key found for this signature in database
GPG Key ID: ADD1EF783EDE9EEB

View File

@ -16,8 +16,8 @@ interface Result extends Stream
public function continue(): Promise;
/**
* Resolves with a new instance of ResultSet or CommandResult if another result is available after this result.
* Resolves with null if no further results are available.
* Resolves with a new instance of Result if another result is available after this result. Resolves with null if
* no further results are available.
*
* @return Promise<Result|null>
*/