diff --git a/book/testing.rst b/book/testing.rst index 0368e180275..7fc2c1e2ac1 100644 --- a/book/testing.rst +++ b/book/testing.rst @@ -492,9 +492,9 @@ If you want the client to automatically follow all redirects, you can force him with the ``followRedirects()`` method:: $client->followRedirects(); - -Also, if you want to prevent the client from following any redirect, you can -force him by passing ``false`` to ``followRedirects()`` method:: + +If you pass ``false`` to the ``followRedirects()`` method, the redirects +will no longer be followed:: $client->followRedirects(false);