From 6e7f47bf9e0a1c461c2978e8c4409904250486cf Mon Sep 17 00:00:00 2001 From: Benjamin Eberlei Date: Tue, 14 Dec 2010 23:29:05 +0100 Subject: [PATCH] Fix mess in Mini-Tutorial of Introduction chapter. --- en/reference/introduction.rst | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/en/reference/introduction.rst b/en/reference/introduction.rst index ace3d7d9b..9f42e2741 100644 --- a/en/reference/introduction.rst +++ b/en/reference/introduction.rst @@ -318,19 +318,19 @@ Mini-tutorial the following: -.. raw:: html +.. code-block:: php - - - setName('Garfield'); :math:`$em->persist($`user); $em->flush(); + setName('Garfield'); + $em->persist($user); + $em->flush(); + + echo "User saved!"; Open index.php in your browser or execute it on the command line.