From 2ed0e208a18209f33c228ef00800fe679b287054 Mon Sep 17 00:00:00 2001 From: Iustin Pop <iustin@google.com> Date: Thu, 26 Jul 2012 21:53:26 +0200 Subject: [PATCH] Fix 'explicitely' common typo It seems that 'explicitely' is wrong, and that the right form is 'explicitly'. This is just fixing the typo plus adjusting affected paragraphs. Signed-off-by: Iustin Pop <iustin@google.com> Reviewed-by: Guido Trotter <ultrotter@google.com> --- INSTALL | 2 +- doc/design-chained-jobs.rst | 2 +- doc/design-query2.rst | 2 +- htools/Ganeti/HTools/CLI.hs | 2 +- lib/build/sphinx_ext.py | 2 +- lib/confd/client.py | 2 +- lib/config.py | 2 +- lib/hypervisor/hv_kvm.py | 6 +++--- lib/impexpd/__init__.py | 6 +++--- lib/objects.py | 2 +- 10 files changed, 14 insertions(+), 14 deletions(-) diff --git a/INSTALL b/INSTALL index bd62a919f..638b06bb3 100644 --- a/INSTALL +++ b/INSTALL @@ -88,7 +88,7 @@ dependencies. distributions need to apply the patches on their own. Ganeti will use the option if it's detected by the ``configure`` - script; auto-detection can be disabled by explicitely passing + script; auto-detection can be disabled by explicitly passing ``--enable-socat-compress`` (use the option to disable compression) or ``--disable-socat-compress`` (don't use the option). diff --git a/doc/design-chained-jobs.rst b/doc/design-chained-jobs.rst index 4061d96c7..8f06dc09a 100644 --- a/doc/design-chained-jobs.rst +++ b/doc/design-chained-jobs.rst @@ -64,7 +64,7 @@ An opcode runs only once all its dependency requirements have been fulfilled. Any job referring to a cancelled job is also cancelled unless it -explicitely lists :pyeval:`constants.JOB_STATUS_CANCELED` as a requested +explicitly lists :pyeval:`constants.JOB_STATUS_CANCELED` as a requested status. In case a referenced job can not be found in the normal queue or the diff --git a/doc/design-query2.rst b/doc/design-query2.rst index a307e9fed..4c7b52d45 100644 --- a/doc/design-query2.rst +++ b/doc/design-query2.rst @@ -392,7 +392,7 @@ Other discussed solutions Another solution discussed was to add an additional column for each non-static field containing the status. Clients interested in the status -could explicitely query for it. +could explicitly query for it. .. vim: set textwidth=72 : .. Local Variables: diff --git a/htools/Ganeti/HTools/CLI.hs b/htools/Ganeti/HTools/CLI.hs index 29f17288f..ebdc17488 100644 --- a/htools/Ganeti/HTools/CLI.hs +++ b/htools/Ganeti/HTools/CLI.hs @@ -309,7 +309,7 @@ oMachineReadable = Option "" ["machine-readable"] flag <- parseYesNo True f return $ opts { optMachineReadable = flag }) "CHOICE") "enable machine readable output (pass either 'yes' or 'no' to\ - \ explicitely control the flag, or without an argument defaults to\ + \ explicitly control the flag, or without an argument defaults to\ \ yes" oMaxCpu :: OptType diff --git a/lib/build/sphinx_ext.py b/lib/build/sphinx_ext.py index bd579ef67..5b43d7018 100644 --- a/lib/build/sphinx_ext.py +++ b/lib/build/sphinx_ext.py @@ -124,7 +124,7 @@ def _BuildOpcodeParams(op_id, include, exclude, alias): key=compat.fst) for (rapi_name, name, default, test, doc) in params_with_alias: - # Hide common parameters if not explicitely included + # Hide common parameters if not explicitly included if (name in COMMON_PARAM_NAMES and (not include or name not in include)): continue diff --git a/lib/confd/client.py b/lib/confd/client.py index 900b5f7bb..67381426e 100644 --- a/lib/confd/client.py +++ b/lib/confd/client.py @@ -48,7 +48,7 @@ confirming what you already got. # pylint: disable=E0203 # E0203: Access to member %r before its definition, since we use -# objects.py which doesn't explicitely initialise its members +# objects.py which doesn't explicitly initialise its members import time import random diff --git a/lib/config.py b/lib/config.py index d29a6121e..c98caff88 100644 --- a/lib/config.py +++ b/lib/config.py @@ -1144,7 +1144,7 @@ class ConfigWriter: if target is None: if len(self._config_data.nodegroups) != 1: raise errors.OpPrereqError("More than one node group exists. Target" - " group must be specified explicitely.") + " group must be specified explicitly.") else: return self._config_data.nodegroups.keys()[0] if target in self._config_data.nodegroups: diff --git a/lib/hypervisor/hv_kvm.py b/lib/hypervisor/hv_kvm.py index 5ef9cc50c..adcc7bc9d 100644 --- a/lib/hypervisor/hv_kvm.py +++ b/lib/hypervisor/hv_kvm.py @@ -1517,9 +1517,9 @@ class KVMHypervisor(hv_base.BaseHypervisor): self.BalloonInstanceMemory(instance, start_memory) if start_kvm_paused: - # To control CPU pinning, ballooning, and vnc/spice passwords the VM was - # started in a frozen state. If freezing was not explicitely requested - # resume the vm status. + # To control CPU pinning, ballooning, and vnc/spice passwords + # the VM was started in a frozen state. If freezing was not + # explicitly requested resume the vm status. self._CallMonitorCommand(instance.name, self._CONT_CMD) def StartInstance(self, instance, block_devices, startup_paused): diff --git a/lib/impexpd/__init__.py b/lib/impexpd/__init__.py index cf3a8cae6..c5babc68b 100644 --- a/lib/impexpd/__init__.py +++ b/lib/impexpd/__init__.py @@ -262,9 +262,9 @@ class CommandBuilder(object): dd_cmd.write(" && ") dd_cmd.write("{ ") - # Setting LC_ALL since we want to parse the output and explicitely - # redirecting stdin, as the background process (dd) would have /dev/null as - # stdin otherwise + # Setting LC_ALL since we want to parse the output and explicitly + # redirecting stdin, as the background process (dd) would have + # /dev/null as stdin otherwise dd_cmd.write("LC_ALL=C dd bs=%s <&0 2>&%d & pid=${!};" % (BUFSIZE, self._dd_stderr_fd)) # Send PID to daemon diff --git a/lib/objects.py b/lib/objects.py index 74526d338..d79e08566 100644 --- a/lib/objects.py +++ b/lib/objects.py @@ -29,7 +29,7 @@ pass to and from external parties. # pylint: disable=E0203,W0201,R0902 # E0203: Access to member %r before its definition, since we use -# objects.py which doesn't explicitely initialise its members +# objects.py which doesn't explicitly initialise its members # W0201: Attribute '%s' defined outside __init__ -- GitLab