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

Commit

Permalink
src/sage/sets/set.py: Fix docstring markup
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koeppe committed Jul 11, 2021
1 parent 55240bb commit fff2a79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sage/sets/set.py
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ def _test_as_set_object(self, tester=None, **options):

class Set_boolean_operators:
r"""
Mix-in class providing the Boolean operators `__or__`, `__and__`, `__xor__`.
Mix-in class providing the Boolean operators ``__or__``, ``__and__``, ``__xor__``.
The operators delegate to the methods ``union``, ``intersection``, and
``symmetric_difference``, which need to be implemented by the class.
Expand Down Expand Up @@ -393,7 +393,7 @@ def __xor__(self, X):

class Set_add_sub_operators:
r"""
Mix-in class providing the operators `__add__` and `__sub__`.
Mix-in class providing the operators ``__add__`` and ``__sub__``.
The operators delegate to the methods ``union`` and ``intersection``,
which need to be implemented by the class.
Expand Down

0 comments on commit fff2a79

Please sign in to comment.