Skip to content

Commit 5be87ca

Browse files
committed
minor symfony#11242 use UTF-8 instead of utf-8 (OskarStark)
This PR was merged into the 3.4 branch. Discussion ---------- use UTF-8 instead of utf-8 Everywhere else we use `UTF-8` Commits ------- f1c624d use UTF-8 instead of utf-8
2 parents 5d7608c + f1c624d commit 5be87ca

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

components/translation/usage.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ loaded/dumped when using this component inside a Symfony application:
450450

451451
.. code-block:: xml
452452
453-
<?xml version="1.0" encoding="utf-8"?>
453+
<?xml version="1.0" encoding="UTF-8"?>
454454
<xliff xmlns="urn:oasis:names:tc:xliff:document:2.0" version="2.0"
455455
srcLang="fr-FR" trgLang="en-US">
456456
<file id="messages.en_US">

doctrine/reverse_engineering.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ The generated ``BlogPost.orm.xml`` metadata file looks as follows:
7373

7474
.. code-block:: xml
7575
76-
<?xml version="1.0" encoding="utf-8"?>
76+
<?xml version="1.0" encoding="UTF-8"?>
7777
<doctrine-mapping xmlns="http://doctrine-project.org/schemas/orm/doctrine-mapping" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://doctrine-project.org/schemas/orm/doctrine-mapping http://doctrine-project.org/schemas/orm/doctrine-mapping.xsd">
7878
<entity name="AppBundle\Entity\BlogPost" table="blog_post">
7979
<id name="id" type="bigint" column="id">

security/remember_me.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ the session lasts using a cookie with the ``remember_me`` firewall option:
3333
.. code-block:: xml
3434
3535
<!-- app/config/security.xml -->
36-
<?xml version="1.0" encoding="utf-8" ?>
36+
<?xml version="1.0" encoding="UTF-8" ?>
3737
<srv:container xmlns="http://symfony.com/schema/dic/security"
3838
xmlns:srv="http://symfony.com/schema/dic/services"
3939
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

service_container/tags.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ If you want to apply tags automatically for your own services, use the
8181
8282
.. code-block:: xml
8383
84-
<?xml version="1.0" encoding="utf-8"?>
84+
<?xml version="1.0" encoding="UTF-8"?>
8585
<container xmlns="http://symfony.com/schema/dic/services" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://symfony.com/schema/dic/services https://symfony.com/schema/dic/services/services-1.0.xsd">
8686
<services>
8787
<!-- this config only applies to the services created by this file -->

workflow/state-machines.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Below is the configuration for the pull request state machine.
6969
.. code-block:: xml
7070
7171
<!-- app/config/config.xml -->
72-
<?xml version="1.0" encoding="utf-8" ?>
72+
<?xml version="1.0" encoding="UTF-8" ?>
7373
<container xmlns="http://symfony.com/schema/dic/services"
7474
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7575
xmlns:framework="http://symfony.com/schema/dic/symfony"

workflow/usage.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ like this:
5555
.. code-block:: xml
5656
5757
<!-- app/config/config.xml -->
58-
<?xml version="1.0" encoding="utf-8" ?>
58+
<?xml version="1.0" encoding="UTF-8" ?>
5959
<container xmlns="http://symfony.com/schema/dic/services"
6060
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
6161
xmlns:framework="http://symfony.com/schema/dic/symfony"

0 commit comments

Comments
 (0)