Skip to content

Commit b80e465

Browse files
authored
🔗 Remove Broken Specification Links (#382)
1 parent 65b2815 commit b80e465

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/electionguard/election.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class CiphertextElectionContext(Serializable):
4141
this object includes fields that are populated in the course of encrypting an election
4242
Specifically, `crypto_base_hash`, `crypto_extended_base_hash` and `elgamal_public_key`
4343
are populated with election-specific information necessary for encrypting the election.
44-
Refer to the [Electionguard Specification](https://github.com/microsoft/electionguard) for more information.
44+
Refer to the specification for more information.
4545
4646
To make an instance of this class, don't construct it directly. Use
4747
`make_ciphertext_election_context` instead.
@@ -57,22 +57,22 @@ class CiphertextElectionContext(Serializable):
5757
"""
5858

5959
elgamal_public_key: ElementModP
60-
"""the `joint public key (K)` in the [ElectionGuard Spec](https://github.com/microsoft/electionguard/wiki)"""
60+
"""the `joint public key (K)` in the specification"""
6161

6262
commitment_hash: ElementModQ
6363
"""
6464
the `commitment hash H(K 1,0 , K 2,0 ... , K n,0 )` of the public commitments
65-
guardians make to each other in the [ElectionGuard Spec](https://github.com/microsoft/electionguard/wiki)
65+
guardians make to each other in the specification
6666
"""
6767

6868
manifest_hash: ElementModQ
6969
"""The hash of the election metadata"""
7070

7171
crypto_base_hash: ElementModQ
72-
"""The `base hash code (𝑄)` in the [ElectionGuard Spec](https://github.com/microsoft/electionguard/wiki)"""
72+
"""The `base hash code (𝑄)` in the specification"""
7373

7474
crypto_extended_base_hash: ElementModQ
75-
"""The `extended base hash code (𝑄')` in [ElectionGuard Spec](https://github.com/microsoft/electionguard/wiki)"""
75+
"""The `extended base hash code (𝑄')` in specification"""
7676

7777

7878
def make_ciphertext_election_context(

0 commit comments

Comments
 (0)