From e6f0751453273b3fa76b6fb2f554965288a16e2f Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Mon, 10 Oct 2011 14:02:06 -0600 Subject: 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. --- libvirt-override.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libvirt-override.py') 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} -- cgit