Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct spelling in permgroup_named: Diyclic => Dicyclic #35694

Merged
merged 3 commits into from
Jun 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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()
Diyclic 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)
Diyclic 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)
Diyclic group of order 48 as a permutation group
Dicyclic group of order 48 as a permutation group
"""
return "Diyclic 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