Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ try {
$results = await($promise);
// results successfully received
} catch (Exception $e) {
// an error occured while performing the request
// an error occurred while performing the request
}
```

Expand Down
2 changes: 1 addition & 1 deletion examples/exec-stream.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
$out = new React\Stream\WritableResourceStream(STDOUT);
$stderr = new React\Stream\WritableResourceStream(STDERR);

// unkown exit code by default
// unknown exit code by default
$exit = 1;

$client->execCreate($container, $cmd)->then(function ($info) use ($client, $out, $stderr, &$exit) {
Expand Down
2 changes: 1 addition & 1 deletion examples/logs.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function ($logs) {
},
function (Exception $e) use ($container) {
echo <<<EOT
An error occured while trying to access the logs.
An error occurred while trying to access the logs.

Have you tried running the following command?

Expand Down