Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
phil-davis committed Nov 3, 2021
1 parent 9fb0308 commit e8ac234
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ ChangeLog
------------------

* hhvm compatible!
* Fixed: Issue #4. Compatiblitiy for PHP < 5.4.14.
* Fixed: Issue #4. Compatibility for PHP < 5.4.14.


1.0.0 (2013-07-19)
Expand Down
2 changes: 1 addition & 1 deletion examples/curl.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function curl_multi_loop_scheduler($mh, callable $done)
$mrc = curl_multi_exec($mh, $active);
switch ($mrc) {
/*
* From the curl docs. If CURM_CALL_MULTI_PERFORM is returned, simply
* From the curl docs. If CURLM_CALL_MULTI_PERFORM is returned, simply
* call curl_multi_perform immediately again. In PHP this means we
* actually call curl_multi_exec immediately again.
*
Expand Down
2 changes: 1 addition & 1 deletion lib/EventEmitter.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/**
* This is the old name for the Emitter class.
*
* Instead of of using EventEmitter, please use Emitter. They are identical
* Instead of using EventEmitter, please use Emitter. They are identical
* otherwise.
*
* @copyright Copyright (C) fruux GmbH (https://fruux.com/)
Expand Down
2 changes: 1 addition & 1 deletion lib/Promise.php
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public function fulfill($value = null)
}

/**
* Marks this promise as rejected, and set it's rejection reason.
* Marks this promise as rejected, and set its rejection reason.
*/
public function reject(Throwable $reason)
{
Expand Down
2 changes: 1 addition & 1 deletion lib/Promise/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

/**
* This function takes an array of Promises, and returns a Promise that
* resolves when all of the given arguments have resolved.
* resolves when all the given arguments have resolved.
*
* The returned Promise will resolve with a value that's an array of all the
* values the given promises have been resolved with.
Expand Down
4 changes: 2 additions & 2 deletions lib/WildcardEmitter.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
* - Using ":" as a separator is optional, but it's highly recommended to use
* some kind of separator.
*
* The WilcardEmitter is a bit slower than the regular Emitter. If you code
* The WildcardEmitter is a bit slower than the regular Emitter. If your code
* must be very high performance, it might be better to try to use the other
* emitter. For must usage the difference is negligible though.
* emitter. For most usage the difference is negligible though.
*
* @copyright Copyright (C) fruux GmbH (https://fruux.com/)
* @author Evert Pot (http://evertpot.com/)
Expand Down

0 comments on commit e8ac234

Please sign in to comment.