Skip to content

Commit 5f02bca

Browse files
committed
minor symfony#3552 Fix typos (ifdattic)
This PR was merged into the 2.3 branch. Discussion ---------- Fix typos | Q | A | ------------- | --- | Doc fix? | yes | New docs? | no | Applies to | 2.3 | Fixed tickets | Commits ------- 7c361e1 Fix typos
2 parents de71a51 + 7c361e1 commit 5f02bca

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

book/doctrine.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -622,7 +622,7 @@ Once you have your repository, you have access to all sorts of helpful methods::
622622
You can also take advantage of the useful ``findBy`` and ``findOneBy`` methods
623623
to easily fetch objects based on multiple conditions::
624624

625-
// query for one product matching be name and price
625+
// query for one product matching by name and price
626626
$product = $repository->findOneBy(array('name' => 'foo', 'price' => 19.99));
627627

628628
// query for all products matching the name, ordered by price

components/http_foundation/sessions.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ has a simple API
254254
Adds a flash message to the stack of specified type;
255255

256256
* :method:`Symfony\\Component\\HttpFoundation\\Session\\Flash\\FlashBagInterface::set`:
257-
Sets flashes by type; This method conveniently takes both singles messages as
257+
Sets flashes by type; This method conveniently takes both single messages as
258258
a ``string`` or multiple messages in an ``array``.
259259

260260
* :method:`Symfony\\Component\\HttpFoundation\\Session\\Flash\\FlashBagInterface::get`:

components/http_kernel/introduction.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -646,7 +646,7 @@ your controller).
646646
:align: center
647647

648648
To execute a sub request, use ``HttpKernel::handle``, but change the second
649-
arguments as follows::
649+
argument as follows::
650650

651651
use Symfony\Component\HttpFoundation\Request;
652652
use Symfony\Component\HttpKernel\HttpKernelInterface;

components/intl.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ code::
7878

7979
These versions are important when you deploy your application to a **server with
8080
a lower ICU version** than your development machines, because deployment will
81-
fail if
81+
fail if:
8282

8383
* the development machines are compiled with ICU 4.4 or higher, but the
8484
server is compiled with a lower ICU version than 4.4;

0 commit comments

Comments
 (0)