Skip to content

Commit 9ca7145

Browse files
committed
minor #11483 Fixed more wrong white spaces (javiereguiluz)
This PR was merged into the 3.4 branch. Discussion ---------- Fixed more wrong white spaces This continues the work made by @OskarStark in #11480. I looked for more occurrences of the "strange white space" ... and there were a lot of them. Oskar, in case you can create a validation rule about this, I opened the file using an hexadecimal editor and saw that: * "normal white space" = `0x20` * "weird white space" = `0xA0` (see http://www.fileformat.info/info/unicode/char/00a0/index.htm) Commits ------- e0b3cbb Fixed more wrong white spaces
2 parents bb94151 + e0b3cbb commit 9ca7145

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

0 commit comments

Comments
 (0)