From 804b686f795d231c9a7a01fbf852e08e246c2671 Mon Sep 17 00:00:00 2001 From: Ala Eddine Khefifi Date: Wed, 21 May 2014 12:56:52 +0200 Subject: [PATCH] Update testing.rst --- book/testing.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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);