Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit 140a743

Browse files
minor doc improvements
1 parent 84c1e39 commit 140a743

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/sage/coding/linear_code.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -3704,8 +3704,8 @@ class LinearCode(AbstractLinearCode):
37043704
minimum distance, will use generic, slow algorithms.
37053705
37063706
If you are looking for constructing a code from a more specific family, see
3707-
if the family has been implemented by investigating codes.<tab>. These
3708-
more specific classes use properties particular for that family to allow
3707+
if the family has been implemented by investigating `codes.<tab>`. These
3708+
more specific classes use properties particular to that family to allow
37093709
faster algorithms, and could also have family-specific methods.
37103710
37113711
See :wikipedia:`Linear_code` for more information on unstructured linear codes.
@@ -3759,7 +3759,8 @@ class LinearCode(AbstractLinearCode):
37593759
sage: C
37603760
Linear code of length 7, dimension 4 over Finite Field of size 5
37613761
3762-
Providing a code as the parameter (see :trac:`20198`)::
3762+
Providing a code as the parameter in order to "forget" its structure (see
3763+
:trac:`20198`)::
37633764
37643765
sage: C = codes.GeneralizedReedSolomonCode(GF(23).list(), 12)
37653766
sage: LinearCode(C)
@@ -3776,7 +3777,7 @@ class LinearCode(AbstractLinearCode):
37763777
AUTHORS:
37773778
37783779
- David Joyner (11-2005)
3779-
- Charles Prior (03-2016)
3780+
- Charles Prior (03-2016): :trac:`20198`, LinearCode from a code
37803781
"""
37813782
def __init__(self, generator, d=None):
37823783
r"""

0 commit comments

Comments
 (0)