Skip to content

Commit e0b3cbb

Browse files
committed
Fixed more wrong white spaces
1 parent 4e412a3 commit e0b3cbb

File tree

14 files changed

+42
-42
lines changed

14 files changed

+42
-42
lines changed

components/class_loader/class_map_generator.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ manually. For example, imagine a library with the following directory structure:
1919
2020
library/
2121
├── bar/
22-
   ├── baz/
23-
   │   └── Boo.php
24-
   └── Foo.php
22+
├── baz/
23+
└── Boo.php
24+
└── Foo.php
2525
└── foo/
2626
├── bar/
27-
   └── Foo.php
27+
└── Foo.php
2828
└── Bar.php
2929
3030
These files contain the following classes:

components/filesystem/lock_handler.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ LockHandler
55

66
The ``LockHandler`` class was deprecated in Symfony 3.4 and it will be
77
removed in Symfony 4.0. Use :ref:`SemaphoreStore <lock-store-semaphore>`
8-
or :ref:`FlockStore <lock-store-flock>` from the Lock component instead.
8+
or :ref:`FlockStore <lock-store-flock>` from the Lock component instead.
99

1010
What is a Lock?
1111
---------------

components/ldap.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ following options:
4040
The encryption protocol: ``ssl``, ``tls`` or ``none`` (default)
4141

4242
``connection_string``
43-
  You may use this option instead of ``host`` and ``port`` to connect to the
43+
You may use this option instead of ``host`` and ``port`` to connect to the
4444
LDAP server
4545

4646
``optReferrals``

components/yaml/yaml_format.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ The following YAML features are not supported by the Symfony Yaml component:
325325
* Complex mapping keys and complex values starting with ``?``;
326326
* Tagged values as keys;
327327
* The following tags and types: `!!set`, `!!omap`, `!!pairs`, `!!set`, `!!seq`,
328-
`!!bool`, `!!int`, `!!merge`, `!!null`, `!!timestamp`, `!!value`, `!!yaml`;
328+
`!!bool`, `!!int`, `!!merge`, `!!null`, `!!timestamp`, `!!value`, `!!yaml`;
329329
* Tags (``TAG`` directive; example: ``%TAG ! tag:example.com,2000:app/``)
330330
and tag references (example: ``!<tag:example.com,2000:app/foo>``);
331331
* Using sequence-like syntax for mapping elements (example: ``{foo, bar}``; use

deployment.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,8 @@ as you normally do:
164164
.. caution::
165165

166166
If you get a "class not found" error during this step, you may need to
167-
  run ``export SYMFONY_ENV=prod`` (or ``export APP_ENV=prod`` if you're
168-
  using :doc:`Symfony Flex </setup/flex>`) before running this command so
167+
run ``export SYMFONY_ENV=prod`` (or ``export APP_ENV=prod`` if you're
168+
using :doc:`Symfony Flex </setup/flex>`) before running this command so
169169
that the ``post-install-cmd`` scripts run in the ``prod`` environment.
170170

171171
D) Clear your Symfony Cache

doctrine/event_listeners_subscribers.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ to the tag like so:
238238
239239
.. note::
240240

241-
  Marking an event listener as ``lazy`` has nothing to do with lazy service
241+
Marking an event listener as ``lazy`` has nothing to do with lazy service
242242
definitions which are described :doc:`in their own article </service_container/lazy_services>`
243243

244244
Priorities for Event Listeners

frontend/assetic/php.rst

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -46,27 +46,27 @@ and some regular CSS and JavaScript application files (called ``main.css`` and
4646
4747
web/assets/
4848
├── css
49-
   ├── main.css
50-
   └── code-highlight.css
49+
├── main.css
50+
└── code-highlight.css
5151
├── js
52-
   ├── bootstrap.js
53-
   ├── jquery.js
54-
   └── main.js
52+
├── bootstrap.js
53+
├── jquery.js
54+
└── main.js
5555
└── scss
5656
├── bootstrap
57-
   ├── _alerts.scss
58-
   ├── ...
59-
   ├── _variables.scss
60-
   ├── _wells.scss
61-
   └── mixins
62-
   ├── _alerts.scss
63-
   ├── ...
64-
   └── _vendor-prefixes.scss
57+
├── _alerts.scss
58+
├── ...
59+
├── _variables.scss
60+
├── _wells.scss
61+
└── mixins
62+
├── _alerts.scss
63+
├── ...
64+
└── _vendor-prefixes.scss
6565
├── bootstrap.scss
6666
├── font-awesome
67-
   ├── _animated.scss
68-
   ├── ...
69-
   └── _variables.scss
67+
├── _animated.scss
68+
├── ...
69+
└── _variables.scss
7070
└── font-awesome.scss
7171
7272
Combining and Minimizing CSS Files and Compiling SCSS Files

reference/configuration/doctrine.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,10 @@ The following block shows all possible configuration keys:
116116
to find your PostgreSQL version and ``mysql -V`` to get your MySQL
117117
version).
118118

119-
  If you are running a MariaDB database, you must prefix the ``server_version``
119+
If you are running a MariaDB database, you must prefix the ``server_version``
120120
value with ``mariadb-`` (e.g. ``server_version: mariadb-10.2.12``).
121121

122-
  Always wrap the server version number with quotes to parse it as a string
122+
Always wrap the server version number with quotes to parse it as a string
123123
instead of a float number. Otherwise, the floating-point representation
124124
issues can make your version be considered a different number (e.g. ``5.6``
125125
will be rounded as ``5.5999999999999996447286321199499070644378662109375``).

reference/forms/types/entity.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,12 +207,12 @@ loading all entities.
207207

208208
.. caution::
209209

210-
  The entity used in the ``FROM`` clause of the ``query_builder`` option
210+
The entity used in the ``FROM`` clause of the ``query_builder`` option
211211
will always be validated against the class which you have specified at the
212212
`class`_ option. If you return another entity instead of the
213213
one used in your ``FROM`` clause (for instance if you return an entity
214214
from a joined table), it will break validation.
215-
   
215+
216216
Overridden Options
217217
------------------
218218

reference/twig_reference.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ describe these extra features.
1818

1919
.. tip::
2020

21-
  Technically, most of the extensions live in the `Twig Bridge`_. That code
21+
Technically, most of the extensions live in the `Twig Bridge`_. That code
2222
might give you some ideas when you need to write your own Twig extension
2323
as described in :doc:`/templating/twig_extension`.
2424

@@ -30,7 +30,7 @@ describe these extra features.
3030

3131
.. tip::
3232

33-
  The `Twig Extensions repository`_ contains some additional Twig extensions
33+
The `Twig Extensions repository`_ contains some additional Twig extensions
3434
that do not belong to the Twig core, so you might want to have a look at
3535
the `Twig Extensions documentation`_.
3636

service_container/3.3-di-changes.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,7 @@ Start by updating the service ids to class names:
573573
Services associated with global PHP classes (i.e. not using PHP namespaces)
574574
must maintain the ``class`` parameter. For example, when using the old Twig
575575
classes (e.g. ``Twig_Extensions_Extension_Intl`` instead of ``Twig\Extensions\IntlExtension``),
576-
  you can't redefine the service as ``Twig_Extensions_Extension_Intl: ~`` and
576+
you can't redefine the service as ``Twig_Extensions_Extension_Intl: ~`` and
577577
you must keep the original ``class`` parameter.
578578

579579
.. caution::

setup/file_permissions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ following script to determine your web server user and grant the needed permissi
5555
5656
.. note::
5757

58-
  The first ``setfacl`` command sets permissions for future files and folders,
58+
The first ``setfacl`` command sets permissions for future files and folders,
5959
while the second one sets permissions on the existing files and folders.
6060
Both of these commands assign permissions for the system user and the Apache
6161
user.

setup/flex.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -133,15 +133,15 @@ following directory structure, which is the same used by default in Symfony 4:
133133
134134
your-project/
135135
├── config/
136-
   ├── bundles.php
137-
   ├── packages/
138-
   ├── routes.yaml
139-
   └── services.yaml
136+
├── bundles.php
137+
├── packages/
138+
├── routes.yaml
139+
└── services.yaml
140140
├── public/
141-
   └── index.php
141+
└── index.php
142142
├── src/
143-
   ├── ...
144-
   └── Kernel.php
143+
├── ...
144+
└── Kernel.php
145145
├── templates/
146146
└── vendor/
147147

templating/twig_extension.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Create a class that extends ``AbstractExtension`` and fill in the logic::
4949

5050
.. note::
5151

52-
  Prior to Twig 1.26, your extension had to define an additional ``getName()``
52+
Prior to Twig 1.26, your extension had to define an additional ``getName()``
5353
method that returned a string with the extension's internal name (e.g.
5454
``app.my_extension``). When your extension needs to be compatible with Twig
5555
versions before 1.26, include this method which is omitted in the example

0 commit comments

Comments
 (0)