Skip to content

Commit b89b2d1

Browse files
committed
Merge pull request symfony#483 from frost-nzcr4/book_doctrine
[book] doctrine.rst typos
2 parents 4df8901 + 026d713 commit b89b2d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

book/doctrine.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ Once you have your repository, you have access to all sorts of helpful methods::
440440
// find *all* products
441441
$products = $repository->findAll();
442442

443-
// find a group of products based on an abitrary column value
443+
// find a group of products based on an arbitrary column value
444444
$products = $repository->findByPrice(19.99);
445445

446446
.. note::
@@ -454,7 +454,7 @@ to easily fetch objects based on multiple conditions::
454454
// query for one product matching be name and price
455455
$product = $repository->findOneBy(array('name' => 'foo', 'price' => 19.99));
456456

457-
// query for all prdocuts matching the name, ordered by price
457+
// query for all products matching the name, ordered by price
458458
$product = $repository->findBy(
459459
array('name' => 'foo'),
460460
array('price', 'ASC')

0 commit comments

Comments
 (0)