Skip to content

Commit e004661

Browse files
javiereguiluzweaverryan
authored andcommitted
Bundle names should not be placed in literals
1 parent 38b1292 commit e004661

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

quick_tour/the_architecture.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ Extending Bundles
259259

260260
If you follow these conventions, then you can use :doc:`bundle inheritance</cookbook/bundles/inheritance>`
261261
to "override" files, controllers or templates. For example, you can create
262-
a bundle - ``AcmeNewBundle`` - and specify that it overrides AcmeDemoBundle.
262+
a bundle - AcmeNewBundle - and specify that it overrides AcmeDemoBundle.
263263
When Symfony loads the ``AcmeDemoBundle:Welcome:index`` controller, it will
264264
first look for the ``WelcomeController`` class in AcmeNewBundle and, if
265265
it doesn't exist, then look inside AcmeDemoBundle. This means that one bundle

quick_tour/the_big_picture.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ have seen so far. All the code you write for your application is organized in
293293
bundles. In Symfony2 speak, a bundle is a structured set of files (PHP files,
294294
stylesheets, JavaScripts, images, ...) that implements a single feature (a
295295
blog, a forum, ...) and which can be easily shared with other developers. As
296-
of now, you have manipulated one bundle, ``AcmeDemoBundle``. You will learn
296+
of now, you have manipulated one bundle, AcmeDemoBundle. You will learn
297297
more about bundles in the :doc:`last part of this tutorial</quick_tour/the_architecture>`.
298298

299299
.. _quick-tour-big-picture-environments:

0 commit comments

Comments
 (0)