Skip to content

Commit d61240b

Browse files
committed
Merge branch '6.3' into 6.4
* 6.3: [Doctrine] Fix line numbers in example
2 parents 0454006 + 1c2c15d commit d61240b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

contributing/documentation/format.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ tutorial and the `reStructuredText Reference`_.
2121
If you are familiar with Markdown, be careful as things are sometimes very
2222
similar but different:
2323

24-
* Lists starts at the beginning of a line (no indentation is allowed);
24+
* Lists start at the beginning of a line (no indentation is allowed);
2525
* Inline code blocks use double-ticks (````like this````).
2626

2727
Sphinx

doctrine.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -395,13 +395,13 @@ Take a look at the previous example in more detail:
395395
the controller method. This object is responsible for saving objects to, and
396396
fetching objects from, the database.
397397

398-
* **lines 17-20** In this section, you instantiate and work with the ``$product``
398+
* **lines 15-18** In this section, you instantiate and work with the ``$product``
399399
object like any other normal PHP object.
400400

401-
* **line 23** The ``persist($product)`` call tells Doctrine to "manage" the
401+
* **line 21** The ``persist($product)`` call tells Doctrine to "manage" the
402402
``$product`` object. This does **not** cause a query to be made to the database.
403403

404-
* **line 26** When the ``flush()`` method is called, Doctrine looks through
404+
* **line 24** When the ``flush()`` method is called, Doctrine looks through
405405
all of the objects that it's managing to see if they need to be persisted
406406
to the database. In this example, the ``$product`` object's data doesn't
407407
exist in the database, so the entity manager executes an ``INSERT`` query,

frontend/asset_mapper.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -693,7 +693,7 @@ Does the AssetMapper Component work in All Browsers?
693693
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
694694

695695
Yup! Features like importmaps and the ``import`` statement are supported
696-
in all modern browsers, but the AssetMapper component ships with an `es module shim`_
696+
in all modern browsers, but the AssetMapper component ships with an `ES module shim`_
697697
to support ``importmap`` in old browsers. So, it works everywhere (see note
698698
below).
699699

0 commit comments

Comments
 (0)