Fix spelling mistakes

Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
Daniel J Walsh 2020-12-09 05:55:40 -05:00
parent dd295f297b
commit bf5d184325
No known key found for this signature in database
GPG Key ID: A2DF901DABE2C028
6 changed files with 6 additions and 6 deletions

View File

@ -67,7 +67,7 @@ jq --indent 4 --color-output . <./artifacts/reply.json || \
cat ./artifacts/reply.json cat ./artifacts/reply.json
echo "::endgroup::" echo "::endgroup::"
# Desireable to catch non-JSON encoded errors in reply. # Desirable to catch non-JSON encoded errors in reply.
if grep -qi 'error' ./artifacts/reply.json; then if grep -qi 'error' ./artifacts/reply.json; then
err "Found the word 'error' in reply" err "Found the word 'error' in reply"
fi fi

View File

@ -4,4 +4,4 @@ Podman offers shell completion scripts for bash, zsh and fish. The completion sc
The shell completion scripts are generated by `make completion`, do not edit these files directly. To install them you can run `sudo make install.completions`. The shell completion scripts are generated by `make completion`, do not edit these files directly. To install them you can run `sudo make install.completions`.
For information about these sripts see [`man podman-completion`](../docs/source/markdown/podman-completion.1.md) For information about these scripts see [`man podman-completion`](../docs/source/markdown/podman-completion.1.md)

View File

@ -155,7 +155,7 @@ Podman-generated unit files include an `[Install]` section, which carries instal
Once you have generated the systemd unit file, you can copy the generated systemd file to ```/etc/systemd/system``` for installing as a root user and to ```$HOME/.config/systemd/user``` for installing it as a non-root user. Enable the copied unit file or files using `systemctl enable`. Once you have generated the systemd unit file, you can copy the generated systemd file to ```/etc/systemd/system``` for installing as a root user and to ```$HOME/.config/systemd/user``` for installing it as a non-root user. Enable the copied unit file or files using `systemctl enable`.
Note: Coping unit files to ```/etc/systemd/system``` and enabling it marks the unit file to be automatically started at boot. And smillarly, coping a unit file to ```$HOME/.config/systemd/user``` and enabling it marks the unit file to be automatically started on user login. Note: Copying unit files to ```/etc/systemd/system``` and enabling it marks the unit file to be automatically started at boot. And similarly, copying a unit file to ```$HOME/.config/systemd/user``` and enabling it marks the unit file to be automatically started on user login.
``` ```

View File

@ -15,7 +15,7 @@ This command is not available for rootless users.
## OPTIONS ## OPTIONS
#### **--alias** #### **--alias**
Add network-scoped alias for the container. If the network is using the `dnsname` CNI plugin, these aliases Add network-scoped alias for the container. If the network is using the `dnsname` CNI plugin, these aliases
can be used for name resolution on the given network. Multiple *--alias* options may be specificed as input. can be used for name resolution on the given network. Multiple *--alias* options may be specified as input.
## EXAMPLE ## EXAMPLE

View File

@ -54,7 +54,7 @@ func (ir *ImageEngine) ManifestInspect(ctx context.Context, name string) ([]byte
} }
return buf, nil return buf, nil
// no return if local image is not a list of images type // no return if local image is not a list of images type
// continue on getting valid manifest through remote serice // continue on getting valid manifest through remote service
} else if errors.Cause(err) != buildahManifests.ErrManifestTypeNotSupported { } else if errors.Cause(err) != buildahManifests.ErrManifestTypeNotSupported {
return nil, errors.Wrapf(err, "loading manifest %q", name) return nil, errors.Wrapf(err, "loading manifest %q", name)
} }

View File

@ -103,7 +103,7 @@ func VolumeFromSource(volumeSource v1.VolumeSource) (*KubeVolume, error) {
} else if volumeSource.PersistentVolumeClaim != nil { } else if volumeSource.PersistentVolumeClaim != nil {
return VolumeFromPersistentVolumeClaim(volumeSource.PersistentVolumeClaim) return VolumeFromPersistentVolumeClaim(volumeSource.PersistentVolumeClaim)
} else { } else {
return nil, errors.Errorf("HostPath and PersistentVolumeClaim are currently the conly supported VolumeSource") return nil, errors.Errorf("HostPath and PersistentVolumeClaim are currently the only supported VolumeSource")
} }
} }