diff --git a/imagebuild/coreos/docker_clean.bash b/imagebuild/coreos/docker_clean.bash index 091c8998a..8b33850c9 100755 --- a/imagebuild/coreos/docker_clean.bash +++ b/imagebuild/coreos/docker_clean.bash @@ -5,7 +5,7 @@ containers=$(docker ps -a -q) images=$(docker images -q) -# All the docker commands followed by || true because occassionally docker +# All the docker commands followed by || true because occasionally docker # will fail to remove an image or container, & I want make to keep going anyway if [[ ! -z "$containers" ]]; then docker rm $containers || true diff --git a/ironic_python_agent/hardware.py b/ironic_python_agent/hardware.py index 0e759463e..0c91acc87 100644 --- a/ironic_python_agent/hardware.py +++ b/ironic_python_agent/hardware.py @@ -269,7 +269,7 @@ class HardwareManager(object): def get_clean_steps(self, node, ports): """Get a list of clean steps with priority. - Returns a list of steps. Each step is represeted by a dict:: + Returns a list of steps. Each step is represented by a dict:: { 'step': the HardwareManager function to call. diff --git a/ironic_python_agent/utils.py b/ironic_python_agent/utils.py index 6a89b3758..99d217e67 100644 --- a/ironic_python_agent/utils.py +++ b/ironic_python_agent/utils.py @@ -30,7 +30,7 @@ LOG = logging.getLogger(__name__) SUPPORTED_ROOT_DEVICE_HINTS = set(('size', 'model', 'wwn', 'serial', 'vendor')) -# Agent parameters can be pased by kernel command-line arguments and/or +# Agent parameters can be passed by kernel command-line arguments and/or # by virtual media. Virtual media parameters passed would be available # when the agent is started, but might not be available for re-reading # later on because: