Skip to content

Commit 9c42d97

Browse files
author
Release Manager
committed
gh-35694: Correct spelling in permgroup_named: Diyclic => Dicyclic <!-- Please provide a concise, informative and self-explanatory title. --> <!-- Don't put issue numbers in the title. Put it in the Description below. --> <!-- For example, instead of "Fixes #12345", use "Add a new method to multiply two integers" --> ### 📚 Description DiCyclic groups are defined in permgroups_named.py. In 3 places it is misspelled. This PR corrects the misspelling. (I think the preferred spelling would be Dicyclic, not DiCyclic, but this PR does not change that.) <!-- Describe your changes here in detail. --> <!-- Why is this change required? What problem does it solve? --> <!-- If this PR resolves an open issue, please link to it here. For example "Fixes #12345". --> <!-- If your change requires a documentation PR, please link it appropriately. --> ### 📝 Checklist <!-- Put an `x` in all the boxes that apply. It should be `[x]` not `[x ]`. --> - [x ] The title is concise, informative, and self-explanatory. - [x] The description explains in detail what this PR is about. - [ ] I have linked a relevant issue or discussion. - [ ] I have created tests covering the changes. - [x ] I have updated the documentation accordingly. ### ⌛ Dependencies <!-- List all open PRs that this PR logically depends on - #12345: short description why this is a dependency - #34567: ... --> <!-- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> URL: #35694 Reported by: Daniel Bump Reviewer(s): Kwankyu Lee
2 parents e99b5d9 + 4f47156 commit 9c42d97

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/sage/algebras/fusion_rings/fusion_double.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,7 @@ def group(self):
711711
EXAMPLES::
712712
713713
sage: FusionDouble(DiCyclicGroup(4)).group()
714-
Diyclic group of order 16 as a permutation group
714+
Dicyclic group of order 16 as a permutation group
715715
"""
716716
return self._G
717717

src/sage/groups/perm_gps/permgroup_named.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -920,7 +920,7 @@ class DiCyclicGroup(PermutationGroup_unique):
920920
TESTS::
921921
922922
sage: groups.permutation.DiCyclic(6)
923-
Diyclic group of order 24 as a permutation group
923+
Dicyclic group of order 24 as a permutation group
924924
925925
AUTHOR:
926926
@@ -976,9 +976,9 @@ def _repr_(self):
976976
EXAMPLES::
977977
978978
sage: DiCyclicGroup(12)
979-
Diyclic group of order 48 as a permutation group
979+
Dicyclic group of order 48 as a permutation group
980980
"""
981-
return "Diyclic group of order %s as a permutation group"%self.order()
981+
return "Dicyclic group of order %s as a permutation group"%self.order()
982982

983983
def is_commutative(self):
984984
r"""

0 commit comments

Comments
 (0)