diff --git a/src/sage/combinat/recognizable_series.py b/src/sage/combinat/recognizable_series.py index 5b95cd8bac4..7339dfad127 100644 --- a/src/sage/combinat/recognizable_series.py +++ b/src/sage/combinat/recognizable_series.py @@ -254,6 +254,14 @@ def __init__(self, parent, mu, left=None, right=None): ``None``, then this multiplication is skipped. See :meth:`right ` for more details. + When created via the parent :class:`RecognizableSeriesSpace`, then + the following option is available. + + - ``transpose`` -- (default: ``False``) a boolean. If set, then + each of the matrices in :meth:`mu ` is transposed. Additionally + the vectors :meth`left ` and :meth:`right ` are switched. + (This is done by calling :meth:`transposed`.) + EXAMPLES:: sage: Rec = RecognizableSeriesSpace(ZZ, [0, 1]) @@ -914,11 +922,6 @@ class RecognizableSeriesSpace(UniqueRepresentation, Parent): - ``category`` -- (default: ``None``) the category of this space. - - ``transpose`` -- (default: ``False``) a boolean. If set, then - each of the matrices in :meth:`mu ` is transposed. Additionally - the vectors :meth`left ` and :meth:`right ` are switched. - (This is done by calling :meth:`~RecognizableSeries.transposed`.) - EXAMPLES: All of the following examples create the same space::