From 5657e199bd70f3d5dfda4dc1faf4301367e9cb6b Mon Sep 17 00:00:00 2001 From: Per Persson Date: Mon, 15 Oct 2012 17:28:12 +0300 Subject: [PATCH] Update en/tutorials/getting-started.rst Spelling: UDPATE -> UPDATE --- en/tutorials/getting-started.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/tutorials/getting-started.rst b/en/tutorials/getting-started.rst index fc5228c85..e02f101cb 100644 --- a/en/tutorials/getting-started.rst +++ b/en/tutorials/getting-started.rst @@ -955,7 +955,7 @@ to the database. You might wonder why does this distinction between persist notification and flush exist: Doctrine 2 uses the UnitOfWork -pattern to aggregate all writes (INSERT, UDPATE, DELETE) into one +pattern to aggregate all writes (INSERT, UPDATE, DELETE) into one single transaction, which is executed when flush is called. Using this approach the write-performance is significantly better than in a scenario where updates are done for each entity in