File tree 3 files changed +5
-5
lines changed
contributing/documentation
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ tutorial and the `reStructuredText Reference`_.
21
21
If you are familiar with Markdown, be careful as things are sometimes very
22
22
similar but different:
23
23
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);
25
25
* Inline code blocks use double-ticks (````like this`` ``).
26
26
27
27
Sphinx
Original file line number Diff line number Diff line change @@ -395,13 +395,13 @@ Take a look at the previous example in more detail:
395
395
the controller method. This object is responsible for saving objects to, and
396
396
fetching objects from, the database.
397
397
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 ``
399
399
object like any other normal PHP object.
400
400
401
- * **line 23 ** The ``persist($product) `` call tells Doctrine to "manage" the
401
+ * **line 21 ** The ``persist($product) `` call tells Doctrine to "manage" the
402
402
``$product `` object. This does **not ** cause a query to be made to the database.
403
403
404
- * **line 26 ** When the ``flush() `` method is called, Doctrine looks through
404
+ * **line 24 ** When the ``flush() `` method is called, Doctrine looks through
405
405
all of the objects that it's managing to see if they need to be persisted
406
406
to the database. In this example, the ``$product `` object's data doesn't
407
407
exist in the database, so the entity manager executes an ``INSERT `` query,
Original file line number Diff line number Diff line change @@ -693,7 +693,7 @@ Does the AssetMapper Component work in All Browsers?
693
693
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
694
694
695
695
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 `_
697
697
to support ``importmap `` in old browsers. So, it works everywhere (see note
698
698
below).
699
699
You can’t perform that action at this time.
0 commit comments