]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
Fix spelling
authorTim Wiederhake <twiederh@redhat.com>
Wed, 30 Mar 2022 14:45:04 +0000 (16:45 +0200)
committerTim Wiederhake <twiederh@redhat.com>
Thu, 31 Mar 2022 09:31:08 +0000 (11:31 +0200)
Signed-off-by: Tim Wiederhake <twiederh@redhat.com>
Reviewed-by: Andrea Bolognani <abologna@redhat.com>
ci/integration.yml
docs/drvqemu.rst
src/qemu/qemu_capabilities.h
src/qemu/qemu_domain.c

index 2808e829efb7560d52b85c9cc05e1cfe20184884..17f20b3945b1d247ee7efb2c0f19947f8fa85a46 100644 (file)
@@ -62,7 +62,7 @@ centos-stream-8-tests:
   variables:
     # needed by libvirt-gitlab-executor
     DISTRO: centos-stream-8
-    # can be overriden in forks to set a different runner tag
+    # can be overridden in forks to set a different runner tag
     LIBVIRT_CI_INTEGRATION_RUNNER_TAG: redhat-vm-host
   tags:
     - $LIBVIRT_CI_INTEGRATION_RUNNER_TAG
@@ -78,7 +78,7 @@ centos-stream-9-tests:
   variables:
     # needed by libvirt-gitlab-executor
     DISTRO: centos-stream-9
-    # can be overriden in forks to set a different runner tag
+    # can be overridden in forks to set a different runner tag
     LIBVIRT_CI_INTEGRATION_RUNNER_TAG: redhat-vm-host
   tags:
     - $LIBVIRT_CI_INTEGRATION_RUNNER_TAG
@@ -94,7 +94,7 @@ fedora-34-tests:
   variables:
     # needed by libvirt-gitlab-executor
     DISTRO: fedora-34
-    # can be overriden in forks to set a different runner tag
+    # can be overridden in forks to set a different runner tag
     LIBVIRT_CI_INTEGRATION_RUNNER_TAG: redhat-vm-host
   tags:
     - $LIBVIRT_CI_INTEGRATION_RUNNER_TAG
@@ -110,7 +110,7 @@ fedora-35-tests:
   variables:
     # needed by libvirt-gitlab-executor
     DISTRO: fedora-35
-    # can be overriden in forks to set a different runner tag
+    # can be overridden in forks to set a different runner tag
     LIBVIRT_CI_INTEGRATION_RUNNER_TAG: redhat-vm-host
   tags:
     - $LIBVIRT_CI_INTEGRATION_RUNNER_TAG
index afc499ad507813fddddf54bfbb3e0267193c1be4..cfe447395183f2d20d7e70b96260ebf667bac6f2 100644 (file)
@@ -589,13 +589,13 @@ specific properties of devices instantiated by libvirt.
 The ``<qemu:device>`` sub-element groups overrides for a device identified via
 the ``alias`` attribute. The alias corresponds to the ``<alias name=''>``
 property of a device. It's strongly recommended to use user-specified aliases
-for devices with overriden properties.
+for devices with overridden properties.
 
 Sub element ``<qemu:frontend>`` encapsulates all overrides of properties for the
 device frontend and overrides what libvirt formats via ``-device``.
 :since:`Since 8.2.0`.
 
-The individual properties are overriden by a ``<qemu:property>`` element. The
+The individual properties are overridden by a ``<qemu:property>`` element. The
 ``name`` specifies the name of the property to override. In case when libvirt
 doesn't configure the property a property with the name is added to the
 commandline. The ``type`` attribute specifies a type of the argument used. The
@@ -612,7 +612,7 @@ remove a device property which is not formatted by libvirt will cause failure
 to startup the VM.
 
 *Note:* The libvirt project doesn't guarantee any form of compatibility and
-stability of devices with overriden properties. The domain is tainted when
+stability of devices with overridden properties. The domain is tainted when
 such configuration is used.
 
 Example:
index 948029d60dc1e55265d69bf82880ef26223bc8b9..b2426a6d25b00fa48e783a5b616602fa0aa3279a 100644 (file)
@@ -642,7 +642,7 @@ typedef enum { /* virQEMUCapsFlags grouping marker for syntax-check */
     QEMU_CAPS_DIRTYRATE_MODE , /* calc-dirty-rate accepts mode parameter */
 
     /* 425 */
-    QEMU_CAPS_BLOCKDEV_NBD_TLS_HOSTNAME, /* tls hostname can be overriden for NBD clients */
+    QEMU_CAPS_BLOCKDEV_NBD_TLS_HOSTNAME, /* tls hostname can be overridden for NBD clients */
     QEMU_CAPS_MEMORY_BACKEND_PREALLOC_THREADS, /* -object memory-backend-*.prealloc-threads */
 
     QEMU_CAPS_LAST /* this must always be the last item */
index 18d403e099eb785265343ba861625d37967a8539..1bfea0d47002256e706a70b93fd892537f150a45 100644 (file)
@@ -3368,7 +3368,7 @@ qemuDomainDefNamespaceParseOverrideProperties(qemuDomainXmlNsOverrideProperty *p
 
         if (STREQ(prop->name, "id")) {
             virReportError(VIR_ERR_XML_ERROR, "%s",
-                           _("property with name 'id' can't be overriden"));
+                           _("property with name 'id' can't be overridden"));
             return -1;
         }