1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: Fix typo on POD
Author: Nick Morrott <nickm@debian.org>
Forwarded: https://github.com/mojolicious/mojo/pull/1930
Last-Update: 2022-03-24
---
--- a/lib/Mojolicious/Guides/Cookbook.pod
+++ b/lib/Mojolicious/Guides/Cookbook.pod
@@ -1843,7 +1843,7 @@
as a new chunk of data is received from the backend web service. Additionally they will take care of removing hop-by-hop
headers and protect you automatically from backpressure issues. Which can happen in situations where the connection to
the backend web service is faster than the connection to the client and data forwarding needs to be throttled. And the
-best of all, everything happens non-blocking, that means your web server can process other requestes concurrently while
+best of all, everything happens non-blocking, that means your web server can process other requests concurrently while
waiting for I/O.
use Mojolicious::Lite -signatures;
|