Skip to content

Commit 290a444

Browse files
committed
Fix typos
1 parent 3fba3a8 commit 290a444

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/client/rpc_call.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ You can do it by defining a command which returns something.
1515
## The consumer side
1616

1717
On the consumer side we have to register a command processor which computes the result and send it back to the sender.
18-
Pay attention that you have to add reply extension. It wont work without it.
18+
Pay attention that you have to add reply extension. It won't work without it.
1919

2020
Of course it is possible to implement rpc server side based on transport classes only. That would require a bit more work to do.
2121

docs/monitoring.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ nav_order: 95
99
# Monitoring.
1010

1111
Enqueue provides a tool for monitoring message queues.
12-
With it, you can control how many messages were sent, how many processed successfuly or failed.
12+
With it, you can control how many messages were sent, how many processed successfully or failed.
1313
How many consumers are working, their up time, processed messages stats, memory usage and system load.
1414
The tool could be integrated with virtually any analytics and monitoring platform.
1515
There are several integration:

pkg/enqueue/Tests/Rpc/PromiseTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ public function testOnReceiveShouldCallReceiveCallBackWithTimeout()
5050
$receiveInvoked = false;
5151
$receivePromise = null;
5252
$receiveTimeout = null;
53-
$receivecb = function ($promise, $timout) use (&$receiveInvoked, &$receivePromise, &$receiveTimeout) {
53+
$receivecb = function ($promise, $timeout) use (&$receiveInvoked, &$receivePromise, &$receiveTimeout) {
5454
$receiveInvoked = true;
5555
$receivePromise = $promise;
56-
$receiveTimeout = $timout;
56+
$receiveTimeout = $timeout;
5757
};
5858

5959
$promise = new Promise($receivecb, function () {}, function () {});

pkg/monitoring/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Enqueue is an MIT-licensed open source project with its ongoing development made
1212
Queue Monitoring tool. Track sent, consumed messages. Consumers performances.
1313

1414
* Could be used with any message queue library.
15-
* Could be intergrated to any PHP framework
15+
* Could be integrated to any PHP framework
1616
* Could send stats to any analytical platform
1717
* Supports Datadog, InfluxDb, Grafana and WAMP out of the box.
1818
* Provides integration for Enqueue

0 commit comments

Comments
 (0)