From 94244683b0cf5b54eb1fd5bb29f7d38b5dcd8153 Mon Sep 17 00:00:00 2001 From: Benjamin Eberlei Date: Sat, 5 Feb 2011 15:23:39 +0100 Subject: [PATCH] Fix typo in new indexed assocations tutorial, thanks @gordonslondon --- en/tutorials/working-with-indexed-associations.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/en/tutorials/working-with-indexed-associations.rst b/en/tutorials/working-with-indexed-associations.rst index 88ffe0261..2934c1a30 100644 --- a/en/tutorials/working-with-indexed-associations.rst +++ b/en/tutorials/working-with-indexed-associations.rst @@ -259,7 +259,7 @@ now query for the market: $market = $em->find("Doctrine\Tests\Models\StockExchange\Market", $marketId); // Access the stocks by symbol now: - $stock = $market->getSymbol($symbol); + $stock = $market->getStock($symbol); echo $stock->getSymbol(); // will print "AAPL" @@ -281,7 +281,7 @@ The same applies to DQL queries: The ``indexBy`` configuration acts as implicit ->getSingleResult(); // Access the stocks by symbol now: - $stock = $market->getSymbol($symbol); + $stock = $market->getStock($symbol); echo $stock->getSymbol(); // will print "AAPL"