1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

Fix typo in Architecture's doc [ci skip] (#1493)

* `syncronously` -> `synchronously`
* `necessarry` -> `necessary`
This commit is contained in:
Yuji Yaginuma 2018-03-20 05:49:06 +09:00 committed by Nate Berkopec
parent d706c1af20
commit 44932e9d4a

View file

@ -33,4 +33,4 @@ Clustered mode is shown/discussed here. Single mode is analogous to having a sin
The `queue_requests` option is `true` by default, enabling the separate thread used to buffer requests as described above.
If set to `false`, this buffer will not be used for connections while waiting for the request to arrive.
In this mode, when a connection is accepted, it is added to the "todo" queue immediately, and a worker will syncronously do any waiting necessarry to read the HTTP request from the socket.
In this mode, when a connection is accepted, it is added to the "todo" queue immediately, and a worker will synchronously do any waiting necessary to read the HTTP request from the socket.