Skip to content

Commit 5aec7c4

Browse files
committed
Minor fixes
1 parent fd35c93 commit 5aec7c4

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

components/browser_kit/introduction.rst

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Creating a Client
2626
The component only provides an abstract client and does not provide any backend
2727
ready to use for the HTTP layer.
2828

29-
To create your own client you must extend the abstract client class and
29+
To create your own client, you must extend the abstract ``Client`` class and
3030
implement the :method:`Symfony\\Component\\BrowserKit\\Client::doRequest` method.
3131
This method accepts a request and should return a response::
3232

@@ -39,8 +39,7 @@ This method accepts a request and should return a response::
3939
{
4040
protected function doRequest($request)
4141
{
42-
// convert request into a response
43-
// ...
42+
// ... convert request into a response
4443

4544
return new Response($content, $status, $headers);
4645
}

0 commit comments

Comments
 (0)