Skip to content

Commit f2b7e44

Browse files
nievesmonterodebarshiray
authored andcommitted
Fix spelling mistakes using codespell
containers#1166 containers#1149 Signed-off-by: Nieves Montero <[email protected]>
1 parent ed9f8cd commit f2b7e44

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Here are some ideas of what you could contribute with:
9292
images. Ultimately there should be a wide variety of supported distro images.
9393
You can help with testing other people's image definitions or creating your
9494
own. **Beware**, maintainers still don't have a clear idea of how the image
95-
infrustructure should look like.
95+
infrastructure should look like.
9696
- Write documentation - Some functions in Toolbox's code don't have comments and
9797
it's not very clear what they do. Toolbox has it's [documentation](https://docs.fedoraproject.org/en-US/fedora-silverblue/toolbox/)
9898
hosted by Fedora. It's not very large and could use some attention.

doc/toolbox-rm.1.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The following options are understood:
2020

2121
**--all, -a**
2222

23-
Remove all toolbox containers. It can be used in conjuction with `--force` as
23+
Remove all toolbox containers. It can be used in conjunction with `--force` as
2424
well.
2525

2626
**--force, -f**

doc/toolbox-rmi.1.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The following options are understood:
2020

2121
**--all, -a**
2222

23-
Remove all toolbox images. It can be used in conjuction with `--force` as well.
23+
Remove all toolbox images. It can be used in conjunction with `--force` as well.
2424

2525
**--force, -f**
2626

src/cmd/initContainer.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ func initContainer(cmd *cobra.Command, args []string) error {
272272
if err := ioutil.WriteFile("/etc/krb5.conf.d/kcm_default_ccache",
273273
kcmConfigBytes,
274274
0644); err != nil {
275-
return errors.New("failed to set KCM as the defult Kerberos credential cache")
275+
return errors.New("failed to set KCM as the default Kerberos credential cache")
276276
}
277277
}
278278

test/system/105-enter.bats

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ teardown() {
4343
assert_line --index 1 "Run 'toolbox --help' for usage."
4444
}
4545

46-
@test "enter: Try to enter a specifc non-existent container with other containers present" {
46+
@test "enter: Try to enter a specific non-existent container with other containers present" {
4747
create_container other-container
4848

4949
run $TOOLBOX enter wrong-container

test/system/libs/helpers.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ function _clean_temporary_storage() {
7070
# - distro - os-release field ID (e.g., fedora, rhel)
7171
# - version - os-release field VERSION_ID (e.g., 33, 34, 8.4)
7272
#
73-
# Only use during test suite setup for caching all images to be used throught
73+
# Only use during test suite setup for caching all images to be used throughout
7474
# tests.
7575
function _pull_and_cache_distro_image() {
7676
local num_of_retries=5

0 commit comments

Comments
 (0)