Skip to content

Cookbook/config dir typo #3982

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions contributing/documentation/standards.rst
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ Files and Directories
~~~~~~~~~~~~~~~~~~~~~

* When referencing directories, always add a trailing slash to avoid confusions
with regular files (e.g. *"execute the ``console`` script located at the ``app/``
directory"*).
with regular files (e.g. "execute the ``console`` script located at the ``app/``
directory").
* When referencing file extensions explicitly, you should include a leading dot
for every extension (e.g. "*XML files use the ``.xml`` extension*").
for every extension (e.g. "XML files use the ``.xml`` extension").
* When you list a Symfony file/directory hierarchy, use ``your-project/`` as the
top level directory. E.g.

Expand Down
27 changes: 14 additions & 13 deletions cookbook/configuration/override_dir_structure.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,19 @@ directory structure is:

.. code-block:: text

app/
cache/
config/
logs/
...
src/
...
vendor/
...
web/
app.php
...
your-project/
├─ app/
| ├─ cache/
| ├─ config/
| ├─ logs/
| └─ ...
├─ src/
| └─ ...
├─ vendor/
| └─ ...
└─ web/
├─ app.php
└─ ...

.. _override-cache-dir:

Expand Down Expand Up @@ -94,7 +95,7 @@ may need to modify the paths inside these files::
You also need to change the ``extra.symfony-web-dir`` option in the ``composer.json``
file:

.. code-block:: json
.. code-block:: javascript

{
...
Expand Down