Skip to content

Commit

Permalink
docs: update docstrings of derived SystematicBlockCodes
Browse files Browse the repository at this point in the history
  • Loading branch information
rwnobrega committed Dec 26, 2024
1 parent ab1f604 commit 04a26fd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/komm/_error_control_block/GolayCode.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class GolayCode(SystematicBlockCode):
Attributes:
extended: If `True`, constructs the code in extended version. The default value is `False`.
This function returns the code in systematic form, with the information set on the left.
This class represents the code in [systematic form](/ref/SystematicBlockCode), with the information set on the left.
Examples:
>>> code = komm.GolayCode()
Expand Down
2 changes: 1 addition & 1 deletion src/komm/_error_control_block/HammingCode.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class HammingCode(SystematicBlockCode):
mu: The parameter $\mu$ of the code. Must satisfy $\mu \geq 2$.
extended: Whether to use the extended version of the Hamming code. Default is `False`.
This function returns the code in systematic form, with the information set on the left.
This class represents the code in [systematic form](/ref/SystematicBlockCode), with the information set on the left.
Examples:
>>> code = komm.HammingCode(3)
Expand Down
2 changes: 1 addition & 1 deletion src/komm/_error_control_block/SimplexCode.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class SimplexCode(SystematicBlockCode):
kappa: The parameter $\kappa$ of the code. Must satisfy $\kappa \geq 2$.
extended: Whether to use the extended version of the Simplex code. Default is `False`.
This function constructs the code in systematic form, with the information set on the left.
This class represents the code in [systematic form](/ref/SystematicBlockCode), with the information set on the left.
Examples:
>>> code = komm.SimplexCode(3)
Expand Down

0 comments on commit 04a26fd

Please sign in to comment.