Remove the duplicated word

Change-Id: Ifdd74e418c7387e39fd0d8e667e86ccf2ed889fe
This commit is contained in:
melissaml 2018-08-22 10:56:37 +08:00
parent d2f2eefbdb
commit 7290c91889
2 changed files with 2 additions and 2 deletions

View File

@ -369,7 +369,7 @@ def document_get(session=None, raw_dict=False, revision_id=None, **filters):
if any([x in f for x in ('.', 'schema')]):
nested_filters.setdefault(f, filters.pop(f))
# Documents with the the same metadata.name and schema can exist across
# Documents with the same metadata.name and schema can exist across
# different revisions, so it is necessary to order documents by creation
# date, then return the first document that matches all desired filters.
documents = session.query(models.Document)\

View File

@ -75,7 +75,7 @@ combination of:
#. ``metadata.name``
#. ``schema``
Because collisions with respect to the the third parameter --
Because collisions with respect to the third parameter --
``metadata.layeringDefinition.layer`` -- can only occur with
:ref:`replacement`. But after document rendering, the replacement-parent
documents are never returned.