Clarified a grammatically incorrect sentence (#6667)

This commit is contained in:
Daphna Shezaf 2019-11-26 11:23:08 +00:00 коммит произвёл Jarek Potiuk
Родитель c3358524c4
Коммит 1accd4907e
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -277,9 +277,9 @@ Relationship Helper
``chain`` and ``cross_downstream`` function provide easier ways to set relationships
between operators in specific situation.
When setting relationships between two list of operators and wish all up list
operators as upstream to all down list operators, we have to split one list
manually using bitshift composition.
When setting a relationship between two lists,
if we want all operators in one list to be upstream to all operators in the other,
we cannot use a single bitshift composition. Instead we have to split one of the lists:
.. code:: python