Skip to content

Commit 092186f

Browse files
committed
fix failing doctests
1 parent 0b350bd commit 092186f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/sage/combinat/permutation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7268,7 +7268,7 @@ def algebra(self, base_ring, category=None):
72687268
Symmetric group algebra of order 4 over Rational Field
72697269
72707270
sage: A.category() # optional - sage.combinat sage.modules
7271-
Join of Category of coxeter group algebras over Rational Field
7271+
Join of Category of Coxeter group algebras over Rational Field
72727272
and Category of finite group algebras over Rational Field
72737273
and Category of finite dimensional cellular algebras
72747274
with basis over Rational Field

src/sage/groups/matrix_gps/coxeter_group.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -253,21 +253,21 @@ def __init__(self, coxeter_matrix, base_ring, index_set):
253253
We check that :trac:`16630` is fixed::
254254
255255
sage: CoxeterGroup(['D',4], base_ring=QQ).category()
256-
Category of finite irreducible coxeter groups
256+
Category of finite irreducible Coxeter groups
257257
258258
sage: # needs sage.rings.number_field
259259
sage: CoxeterGroup(['H',4], base_ring=QQbar).category()
260-
Category of finite irreducible coxeter groups
260+
Category of finite irreducible Coxeter groups
261261
sage: F = CoxeterGroups().Finite()
262262
sage: all(CoxeterGroup([letter,i]) in F
263263
....: for i in range(2,5) for letter in ['A','B','D'])
264264
True
265265
sage: all(CoxeterGroup(['E',i]) in F for i in range(6,9))
266266
True
267267
sage: CoxeterGroup(['F',4]).category()
268-
Category of finite irreducible coxeter groups
268+
Category of finite irreducible Coxeter groups
269269
sage: CoxeterGroup(['G',2]).category()
270-
Category of finite irreducible coxeter groups
270+
Category of finite irreducible Coxeter groups
271271
sage: all(CoxeterGroup(['H',i]) in F for i in range(3,5))
272272
True
273273
sage: all(CoxeterGroup(['I',i]) in F for i in range(2,5))

src/sage/groups/perm_gps/permgroup_named.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -640,7 +640,7 @@ def algebra(self, base_ring, category=None):
640640
We illustrate the choice of the category::
641641
642642
sage: A.category() # needs sage.combinat
643-
Join of Category of coxeter group algebras over Rational Field
643+
Join of Category of Coxeter group algebras over Rational Field
644644
and Category of finite group algebras over Rational Field
645645
and Category of finite dimensional cellular algebras with basis
646646
over Rational Field

0 commit comments

Comments
 (0)