From dfd369922fa1c21d101414bcd881bde6e661ad14 Mon Sep 17 00:00:00 2001 From: Oskar Stark Date: Sat, 16 Mar 2019 09:32:43 +0100 Subject: [PATCH] typo in comment (php example) --- controller.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controller.rst b/controller.rst index cf6131dcab2..41b5e65bf89 100644 --- a/controller.rst +++ b/controller.rst @@ -186,7 +186,7 @@ and ``redirect()`` methods:: // redirects to a route with parameters return $this->redirectToRoute('blog_show', ['slug' => 'my-page']); - // redirects to a route and mantains the original query string parameters + // redirects to a route and maintains the original query string parameters return $this->redirectToRoute('blog_show', $request->query->all()); // redirects externally