diff --git a/components/dom_crawler.rst b/components/dom_crawler.rst index c41d44a185a..199a84d89a3 100644 --- a/components/dom_crawler.rst +++ b/components/dom_crawler.rst @@ -440,7 +440,7 @@ directly:: $crawler = $client->request('GET', 'https://github.com/login'); // select the form and fill in some values - $form = $crawler->selectButton('Log in')->form(); + $form = $crawler->selectButton('Sign in')->form(); $form['login'] = 'symfonyfan'; $form['password'] = 'anypass';