Skip to content

Commit c203c48

Browse files
committed
Detect and fix typos using codespell
Signed-off-by: Yaroslav Halchenko <[email protected]>
1 parent 12b3d01 commit c203c48

8 files changed

+9
-9
lines changed

.github/renovate.json5

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
3-
Validate this file before commiting with (from repository root):
3+
Validate this file before committing with (from repository root):
44
55
podman run -it \
66
-v ./.github/renovate.json5:/usr/src/app/renovate.json5:z \
@@ -17,7 +17,7 @@ and/or use the pre-commit hook: https://github.com/renovatebot/pre-commit-hooks
1717
****** Global/general configuration options *****
1818
*************************************************/
1919

20-
// Re-use predefined sets of configuration options to DRY
20+
// Reuse predefined sets of configuration options to DRY
2121
"extends": [
2222
// https://github.com/containers/automation/blob/main/renovate/defaults.json5
2323
"github>containers/automation//renovate/defaults.json5"

.github/workflows/check_cirrus_cron.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
- cron: '03 03 * * 1-5'
1515
# Debug: Allow triggering job manually in github-actions WebUI
1616
workflow_dispatch: {}
17-
# Allow re-use of this workflow by other repositories
17+
# Allow reuse of this workflow by other repositories
1818
# Ref: https://docs.github.com/en/actions/using-workflows/reusing-workflows
1919
workflow_call:
2020
secrets:

.github/workflows/issue_pr_lock.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ name: "Lock closed issues and PRs"
1111
on:
1212
schedule:
1313
- cron: '0 0 * * *'
14-
# Allow re-use of this workflow by other repositories
14+
# Allow reuse of this workflow by other repositories
1515
# Ref: https://docs.github.com/en/actions/using-workflows/reusing-workflows
1616
workflow_call:
1717
secrets:

.github/workflows/rerun_cirrus_cron.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
- cron: '01 01 * * 1-5'
1414
# Debug: Allow triggering job manually in github-actions WebUI
1515
workflow_dispatch: {}
16-
# Allow re-use of this workflow by other repositories
16+
# Allow reuse of this workflow by other repositories
1717
# Ref: https://docs.github.com/en/actions/using-workflows/reusing-workflows
1818
workflow_call:
1919
secrets:

.github/workflows/update-podmanio.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
steps.checkversion.outputs.needsUpdate == 'true' &&
102102
steps.checkpr.outputs.prexists == 'false'
103103
run: |
104-
# Make commiter the user who triggered the action, either through cutting a release or manual trigger
104+
# Make committer the user who triggered the action, either through cutting a release or manual trigger
105105
# GitHub gives everyone a noreply email associated with their account, use that email for the sign-off
106106
git config --local user.name ${{ github.actor }}
107107
git config --local user.email "${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com"

RELEASE_PROCESS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ spelled with complete minutiae.
253253
event states triggered, but this can be ignored, as any duplicates
254254
will gracefully back-off. The job takes 5-6 minutes to complete.
255255

256-
Please note that the Windows action depends onthe artifact action, and will be
256+
Please note that the Windows action depends on the artifact action, and will be
257257
triggered after the artifact action succeeds.
258258

259259
If any of these actions are somehow not triggered, you can manually trigger them

docs/source/markdown/podman-manifest-add.1.md.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ podman manifest add mylist:v1.11 docker://fedora
147147
71c201d10fffdcac52968a000d85a0a016ca1c7d5473948000d3131c1773d965
148148
```
149149

150-
Add all images from source manfest list to destination manifest list:
150+
Add all images from source manifest list to destination manifest list:
151151
```
152152
podman manifest add --all mylist:v1.11 docker://fedora
153153
71c201d10fffdcac52968a000d85a0a016ca1c7d5473948000d3131c1773d965

test/apiv2/25-containersMore.at

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ t POST libpod/containers/create name=test1 image=$IMAGE privileged=true 201
9292
t GET libpod/containers/test1/json 200 \
9393
.HostConfig.Annotations.'"io.podman.annotations.privileged"'="TRUE"
9494

95-
# now the same without privileged it should not inhert the privileged from before
95+
# now the same without privileged it should not inherit the privileged from before
9696
t POST libpod/containers/create name=test2 image=$IMAGE 201
9797
t GET libpod/containers/test2/json 200 \
9898
.HostConfig.Annotations=null

0 commit comments

Comments
 (0)