Skip to content

Commit 4435154

Browse files
docs: remove sub-sub-headings
1 parent a1404d5 commit 4435154

File tree

1 file changed

+1
-15
lines changed

1 file changed

+1
-15
lines changed

docs/guide/firestore.rst

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@ Database.
1212
1313
.. note::
1414
Each of the following methods accepts a user token:
15-
:ref:`get()<guide/firestore:get>`, :ref:`set()<guide/firestore:set>`,
16-
:ref:`update()<guide/firestore:update>`, and
17-
:ref:`delete()<guide/firestore:delete>`.
15+
``get()``, ``set()``, ``update()``, and ``delete()``.
1816

1917

2018
Build Path
@@ -32,9 +30,6 @@ You can build paths to your data by using the ``collection()`` and ``document()`
3230
Save Data
3331
---------
3432

35-
set
36-
^^^
37-
3833
To store data in a collection named ``Marvels`` and a document inside
3934
the collection named ``Movies``, use ``set()`` method.
4035

@@ -59,9 +54,6 @@ the collection named ``Movies``, use ``set()`` method.
5954
Read Data
6055
---------
6156

62-
get
63-
^^^
64-
6557
To read data from an existing document of an collection, use ``get()`` method.
6658

6759
.. code-block:: python
@@ -84,9 +76,6 @@ It is possible to filter the data of an document to receive specific fields.
8476
Update Data
8577
-----------
8678

87-
update
88-
^^^^^^
89-
9079
To update existing data or add more data to an existing document, use
9180
``update()`` method.
9281

@@ -116,9 +105,6 @@ To update existing data or add more data to an existing document, use
116105
Delete Data
117106
-----------
118107

119-
delete
120-
^^^^^^
121-
122108
To remove an existing document in a collection, use ``delete()``
123109
method.
124110

0 commit comments

Comments
 (0)