summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Blake <eblake@redhat.com>2011-10-10 14:02:06 -0600
committerEric Blake <eblake@redhat.com>2011-10-10 14:02:06 -0600
commite6f0751453273b3fa76b6fb2f554965288a16e2f (patch)
treecd4a36e934fff22b065c08c5dd9c44ffcf4ca1e8
parenta45a0acdd8e75452c40a1811cbae85512bbc63d4 (diff)
downloadlibvirt-python-split-e6f0751453273b3fa76b6fb2f554965288a16e2f.tar.gz
libvirt-python-split-e6f0751453273b3fa76b6fb2f554965288a16e2f.tar.xz
libvirt-python-split-e6f0751453273b3fa76b6fb2f554965288a16e2f.zip
maint: typo fixes
I noticed a couple typos in recent commits, and fixed the remaining instances of them. * docs/internals/command.html.in: Fix spelling errors. * include/libvirt/libvirt.h.in (virConnectDomainEventCallback): Likewise. * python/libvirt-override.py (virEventAddHandle): Likewise. * src/lxc/lxc_container.c (lxcContainerChild): Likewise. * src/util/hash.c (virHashCreateFull): Likewise. * src/storage/storage_backend_logical.c (virStorageBackendLogicalMakeVol): Likewise. * src/esx/esx_driver.c (esxFormatVMXFileName): Likewise. * src/vbox/vbox_tmpl.c (vboxIIDIsEqual_v3_x): Likewise.
-rw-r--r--libvirt-override.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/libvirt-override.py b/libvirt-override.py
index 98241d6..387fddf 100644
--- a/libvirt-override.py
+++ b/libvirt-override.py
@@ -179,8 +179,8 @@ def virEventAddHandle(fd, events, cb, opaque):
Example callback prototype is:
def cb(watch, # int id of the handle
- fd, # int file descriptor the event occured on
- events, # int bitmap of events that have occured
+ fd, # int file descriptor the event occurred on
+ events, # int bitmap of events that have occurred
opaque): # opaque data passed to eventAddHandle
"""
cbData = {"cb" : cb, "opaque" : opaque}