From 8f959ba9013b081b3ae27840de9e9c3f4a6d697d Mon Sep 17 00:00:00 2001 From: Benjamin Hackl Date: Wed, 19 Jul 2023 21:42:58 -0700 Subject: [PATCH] fixed another instance of missing code literal in sage.combinat.affine_permutation (#6) --- src/sage/combinat/affine_permutation.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sage/combinat/affine_permutation.py b/src/sage/combinat/affine_permutation.py index bc68a94d089..f22cb7ebdcf 100644 --- a/src/sage/combinat/affine_permutation.py +++ b/src/sage/combinat/affine_permutation.py @@ -940,9 +940,9 @@ def to_core(self, typ='decreasing', side='right'): INPUT: - - ``typ`` -- 'increasing' or 'decreasing' (default: 'decreasing'.) + - ``typ`` -- ``'increasing'`` or ``'decreasing'`` (default: ``'decreasing'``.) - - ``side`` -- 'right' or 'left' (default: 'right'.) Chooses whether to + - ``side`` -- ``'right'`` or ``'left'`` (default: ``'right'``.) Chooses whether to find maximal sets starting from the left or the right. EXAMPLES::