From 8a2f0ba18bcc9b480b29bd5db648f716b98613e5 Mon Sep 17 00:00:00 2001 From: Edson Medina Date: Sun, 8 Feb 2015 14:08:48 +0000 Subject: [PATCH] Wrong comma --- best_practices/business-logic.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/best_practices/business-logic.rst b/best_practices/business-logic.rst index b15903be992..ecfd9f276c8 100644 --- a/best_practices/business-logic.rst +++ b/best_practices/business-logic.rst @@ -56,7 +56,7 @@ The blog application needs a utility that can transform a post title (e.g. "Hello World") into a slug (e.g. "hello-world"). The slug will be used as part of the post URL. -Let's, create a new ``Slugger`` class inside ``src/AppBundle/Utils/`` and +Let's create a new ``Slugger`` class inside ``src/AppBundle/Utils/`` and add the following ``slugify()`` method: .. code-block:: php