Skip to content

Commit

Permalink
Use Dicyclic, not DiCyclic in the repr method of dicyclic groups
Browse files Browse the repository at this point in the history
  • Loading branch information
dwbmscz committed May 30, 2023
1 parent 6d8bf99 commit 4f47156
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/sage/algebras/fusion_rings/fusion_double.py
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,7 @@ def group(self):
EXAMPLES::
sage: FusionDouble(DiCyclicGroup(4)).group()
DiCyclic group of order 16 as a permutation group
Dicyclic group of order 16 as a permutation group
"""
return self._G

Expand Down
6 changes: 3 additions & 3 deletions src/sage/groups/perm_gps/permgroup_named.py
Original file line number Diff line number Diff line change
Expand Up @@ -920,7 +920,7 @@ class DiCyclicGroup(PermutationGroup_unique):
TESTS::
sage: groups.permutation.DiCyclic(6)
DiCyclic group of order 24 as a permutation group
Dicyclic group of order 24 as a permutation group
AUTHOR:
Expand Down Expand Up @@ -976,9 +976,9 @@ def _repr_(self):
EXAMPLES::
sage: DiCyclicGroup(12)
DiCyclic group of order 48 as a permutation group
Dicyclic group of order 48 as a permutation group
"""
return "DiCyclic group of order %s as a permutation group"%self.order()
return "Dicyclic group of order %s as a permutation group"%self.order()

def is_commutative(self):
r"""
Expand Down

0 comments on commit 4f47156

Please sign in to comment.