Skip to content

Commit d001da8

Browse files
committed
Fixed some typos reported by @henrikbjorn
1 parent d12cfe5 commit d001da8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

best_practices/business-logic.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ Using a Persistence Layer
164164
Symfony is an HTTP framework that only cares about generating an HTTP response
165165
for each HTTP request. That's why Symfony doesn't provide a way to talk to
166166
a persistence layer (e.g. database, external API). You can choose whatever
167-
library of strategy you want for this.
167+
library or strategy you want for this.
168168

169169
In practice, many Symfony applications rely on the independent
170170
`Doctrine project`_ to define their model using entities and repositories.

best_practices/templates.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ drastically simplifies their logical names:
4040
================================================== ==================================
4141
Templates stored inside bundles Templates stored in ``app/``
4242
================================================== ==================================
43-
``AcmeDemoBunde:Default:index.html.twig`` ``default/index.html.twig``
43+
``AcmeDemoBundle:Default:index.html.twig`` ``default/index.html.twig``
4444
``::layout.html.twig`` ``layout.html.twig``
4545
``AcmeDemoBundle::index.html.twig`` ``index.html.twig``
4646
``AcmeDemoBundle:Default:subdir/index.html.twig`` ``default/subdir/index.html.twig``

0 commit comments

Comments
 (0)