From a07402a2597f1388d412d66fd341b1726bf8177a Mon Sep 17 00:00:00 2001 From: John Bafford Date: Sat, 4 Apr 2015 23:21:07 -0400 Subject: [PATCH] Add missing word in bundles best practice description --- best_practices/creating-the-project.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/best_practices/creating-the-project.rst b/best_practices/creating-the-project.rst index b180e2d3de6..a180eef9fd2 100644 --- a/best_practices/creating-the-project.rst +++ b/best_practices/creating-the-project.rst @@ -94,7 +94,7 @@ ProductBundle, InvoiceBundle, etc. But a bundle is *meant* to be something that can be reused as a stand-alone piece of software. If UserBundle cannot be used *"as is"* in other Symfony -apps, then it shouldn't be its own bundle. Moreover InvoiceBundle depends on +apps, then it shouldn't be its own bundle. Moreover, if InvoiceBundle depends on ProductBundle, then there's no advantage to having two separate bundles. .. best-practice::