Skip to content

Commit 84a7e24

Browse files
committed
fix typos and grammar
1 parent 3ad1628 commit 84a7e24

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Also it will be initialized when you call `PhpConsole\Handler::getInstance()` or
7676

7777
### Communication protocol
7878

79-
PHP Console uses headers to communicate with client, so `PhpConsole\Connector::getInstance()` or `PhpConsole\Handler::getInstance()` must be called before any output. If headers are sent before script shut down or PHP Console response package size is out of web-server headers size limit, then PHP Console will store response data in [PhpConsole\Storage](src/PhpConsole/Storage.php) implementation and send it to client in STDOUT, in additional HTTP request. So there is no limits in PHP Console response package size.
79+
PHP Console uses headers to communicate with client, so `PhpConsole\Connector::getInstance()` or `PhpConsole\Handler::getInstance()` must be called before any output. If headers are sent before script shut down or PHP Console response package size is out of web-server headers size limit, then PHP Console will store response data in [PhpConsole\Storage](src/PhpConsole/Storage.php) implementation and send it to client in STDOUT, in additional HTTP request. So there is no limit in PHP Console response package size.
8080

8181
### Troubleshooting with $_SESSION handler overridden in some frameworks
8282

@@ -113,7 +113,7 @@ PhpConsole server library is optimized for lazy initialization only for clients
113113

114114
$connector->setPassword('yohoho123', true);
115115

116-
Clients will need to enter password to get access to PHP Console server data. All passwords are stored on client as SHA-256 hashes. Second argument says that PHP Console authorization token will depends on client IP.
116+
Clients will need to enter a password to get access to PHP Console server data. All passwords are stored on client as SHA-256 hashes. Second argument says that the PHP Console authorization token will depend on the client IP.
117117

118118
### SSL only connection mode
119119

@@ -131,7 +131,7 @@ So all PHP Console clients will be automatically redirected to HTTPS.
131131

132132
There is a [PhpConsole\Handler](src/PhpConsole/Handler.php) class that initializes PHP errors & exceptions handlers and provides the next features:
133133

134-
* Handle PHP errors(+fatal & memory limit errors) and exceptions.
134+
* Handle PHP errors (+fatal & memory limit errors) and exceptions.
135135
* Ignore repeated errors.
136136
* Call previously defined errors and exceptions handlers.
137137
* Handle caught exceptions using `$handler->handleException($exception)`.

0 commit comments

Comments
 (0)