Skip to content

Commit aa8e458

Browse files
Fix typos (#1318)
1 parent c55a692 commit aa8e458

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ALL_PY_SRCS := $(shell find $(PY_MODULE) -name '*.py') \
66
$(shell find test -name '*.py') \
77
$(shell find docs/scripts -name '*.py') \
88

9-
# Optionally overriden by the user, if they're using a virtual environment manager.
9+
# Optionally overridden by the user, if they're using a virtual environment manager.
1010
VENV ?= env
1111

1212
# On Windows, venv scripts/shims are under `Scripts` instead of `bin`.
@@ -34,7 +34,7 @@ ifneq ($(TESTS),)
3434
COV_ARGS :=
3535
else
3636
TEST_ARGS := $(TEST_ARGS)
37-
# TODO: Reenable coverage testing
37+
# TODO: Re-enable coverage testing
3838
# COV_ARGS := --fail-under 100
3939
endif
4040

docs/advanced/offline.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
Users who need to operationalize offline verification may wish to do this
1111
by distributing their own trust configuration; see
12-
[Customn root of trust](./custom_trust.md).
12+
[Custom root of trust](./custom_trust.md).
1313

1414
During verification, there are two kinds of network access that `sigstore-python`
1515
*can* perform:
@@ -40,4 +40,4 @@ $ sigstore --trust-config public.trustconfig.json verify identity ...
4040
```
4141

4242
This will similarly result in fully offline operation, as the trust
43-
configuration contains a full trust root.
43+
configuration contains a full trust root.

docs/policy.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ the integrity and transparency of the signing process.
4444

4545
!!! warning
4646

47-
This step is performed before the `Timestamping` step in the worfklow.
47+
This step is performed before the `Timestamping` step in the workflow.
4848

4949
### Signing Choices
5050

docs/signing.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ namely the Fulcio's supported identity providers and the claims expected within
4141

4242
!!! note
4343

44-
The examples in the section belows are using ambient credential detection.
44+
The examples in the section below are using ambient credential detection.
4545
When no credentials are detected, it opens a browser to perform an interactive OAuth2 authentication flow.
4646

4747
## Signing an artifact
@@ -130,4 +130,4 @@ Transparency log entry created at index: 155019253
130130
Sigstore bundle written to README.md.sigstore.json
131131
```
132132

133-
[SLSA]: https://slsa.dev/
133+
[SLSA]: https://slsa.dev/

sigstore/_internal/rekor/checkpoint.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class LogCheckpoint(BaseModel):
5757
- an origin, e.g. "rekor.sigstage.dev - 8050909264565447525"
5858
- the size of the log,
5959
- the hash of the log,
60-
- and any optional ancillary contants, e.g. "Timestamp: 1679349379012118479"
60+
- and any optional ancillary constants, e.g. "Timestamp: 1679349379012118479"
6161
6262
See: <https://github.com/transparency-dev/formats/blob/main/log/README.md>
6363
"""

sigstore/_internal/sct.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def _pack_digitally_signed(
9999
blob, one that forms the signature body of the "digitally-signed" struct
100100
for an SCT.
101101
102-
The format of the digitaly signed data is described in IETF's RFC 6962.
102+
The format of the digitally signed data is described in IETF's RFC 6962.
103103
"""
104104

105105
# No extensions are currently specified, so we treat the presence

sigstore/sign.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def _signing_cert(
138138
else:
139139
_logger.debug("Retrieving signed certificate...")
140140

141-
# Build an X.509 Certificiate Signing Request
141+
# Build an X.509 Certificate Signing Request
142142
builder = (
143143
x509.CertificateSigningRequestBuilder()
144144
.subject_name(

0 commit comments

Comments
 (0)