Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
correct oo, null
Browse files Browse the repository at this point in the history
  • Loading branch information
dkrenn committed Sep 21, 2015
1 parent 28ea9d6 commit 39ae466
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/sage/data_structures/mutable_poset.py
Original file line number Diff line number Diff line change
Expand Up @@ -772,8 +772,8 @@ def _iter_depth_first_visit_(self, marked,
- ``marked`` -- a set in which marked shells are stored.
- ``reverse`` -- (default: ``False``) if set, reverses the
order, i.e., ``False`` searches towards ``null`` and
``True`` searches towards ``oo``.
order, i.e., ``False`` searches towards ``'oo'`` and
``True`` searches towards ``'null'``.
- ``key`` -- (default: ``None``) a function used for sorting
the direct successors of a shell (used in case of a
Expand Down Expand Up @@ -822,8 +822,8 @@ def iter_depth_first(self, reverse=False, key=None, condition=None):
INPUT:
- ``reverse`` -- (default: ``False``) if set, reverses the
order, i.e., ``False`` searches towards ``null`` and
``True`` searches towards ``oo``.
order, i.e., ``False`` searches towards ``'oo'`` and
``True`` searches towards ``'null'``.
- ``key`` -- (default: ``None``) a function used for sorting
the direct successors of a shell (used in case of a
Expand Down Expand Up @@ -879,8 +879,8 @@ def _iter_topological_visit_(self, marked,
- ``marked`` -- a set in which marked shells are stored.
- ``reverse`` -- (default: ``False``) if set, reverses the
order, i.e., ``False`` searches towards ``null`` and
``True`` searches towards ``oo``.
order, i.e., ``False`` searches towards ``'oo'`` and
``True`` searches towards ``'null'``.
- ``key`` -- (default: ``None``) a function used for sorting
the direct successors of a shell (used in case of a
Expand Down Expand Up @@ -929,8 +929,8 @@ def iter_topological(self, reverse=False, key=None, condition=None):
INPUT:
- ``reverse`` -- (default: ``False``) if set, reverses the
order, i.e., ``False`` searches towards ``null`` and
``True`` searches towards ``oo``.
order, i.e., ``False`` searches towards ``'oo'`` and
``True`` searches towards ``'null'``.
- ``key`` -- (default: ``None``) a function used for sorting
the direct successors of a shell (used in case of a
Expand Down

0 comments on commit 39ae466

Please sign in to comment.