diff --git a/HACKING b/HACKING index d765be9339..90d2a1cb17 100644 --- a/HACKING +++ b/HACKING @@ -461,7 +461,7 @@ File handling ============= Usage of the "fdopen()", "close()", "fclose()" APIs is deprecated in libvirt code base to help avoiding double-closing of files or file descriptors, which -is particulary dangerous in a multi-threaded applications. Instead of these +is particularly dangerous in a multi-threaded application. Instead of these APIs, use the macros from virfile.h - Open a file from a file descriptor: diff --git a/configure.ac b/configure.ac index ee51bb63f6..bcdea9ce84 100644 --- a/configure.ac +++ b/configure.ac @@ -1351,7 +1351,7 @@ if test "x$with_avahi" = "xyes" || test "x$with_avahi" = "xcheck"; then ]) if test "x$with_avahi" = "xyes" ; then AC_DEFINE_UNQUOTED([HAVE_AVAHI], 1, - [whether Avahi is used to broadcast server presense]) + [whether Avahi is used to broadcast server presence]) fi fi AC_SUBST([AVAHI_CFLAGS]) diff --git a/daemon/libvirtd.conf b/daemon/libvirtd.conf index 3d296cd32f..47da5208eb 100644 --- a/daemon/libvirtd.conf +++ b/daemon/libvirtd.conf @@ -251,7 +251,7 @@ # The minimum limit sets the number of workers to start up # initially. If the number of active clients exceeds this, -# then more threads are spawned, upto max_workers limit. +# then more threads are spawned, up to max_workers limit. # Typically you'd want max_workers to equal maximum number # of clients allowed #min_workers = 5 @@ -267,7 +267,7 @@ # at least as large as max_workers. Beyond this, RPC requests # will be read into memory and queued. This directly impact # memory usage, currently each request requires 256 KB of -# memory. So by default upto 5 MB of memory is used +# memory. So by default up to 5 MB of memory is used # # XXX this isn't actually enforced yet, only the per-client # limit is used so far diff --git a/daemon/stream.c b/daemon/stream.c index 58c53a9c53..fa14eeb565 100644 --- a/daemon/stream.c +++ b/daemon/stream.c @@ -689,7 +689,7 @@ daemonStreamHandleWrite(virNetServerClientPtr client, /* * Invoked when a stream is signalled as having data - * available to read. This reads upto one message + * available to read. This reads up to one message * worth of data, and then queues that for transmission * to the client. * diff --git a/docs/api.html.in b/docs/api.html.in index c8fc2047a3..f596aa9fdd 100644 --- a/docs/api.html.in +++ b/docs/api.html.in @@ -64,13 +64,13 @@

Most kind of object can also be named in various ways:

diff --git a/docs/apibuild.py b/docs/apibuild.py index ae84be974e..e73a85d69b 100755 --- a/docs/apibuild.py +++ b/docs/apibuild.py @@ -2474,7 +2474,7 @@ class docBuilder: def rebuild(name): if name not in ["libvirt", "libvirt-qemu"]: - self.warning("rebuild() failed, unkown module %s") % name + self.warning("rebuild() failed, unknown module %s") % name return None builder = None srcdir = os.environ["srcdir"] diff --git a/docs/apps.html.in b/docs/apps.html.in index 903b0995d3..76020d8c46 100644 --- a/docs/apps.html.in +++ b/docs/apps.html.in @@ -188,7 +188,7 @@ A general purpose desktop management tool, able to manage virtual machines across both local and remotely accessed hypervisors. It is targeted at home and small office usage - upto managing 10-20 hosts and their VMs. + up to managing 10-20 hosts and their VMs.
virt-viewer
diff --git a/docs/firewall.html.in b/docs/firewall.html.in index 8af3dd3d49..afc8dd3d6b 100644 --- a/docs/firewall.html.in +++ b/docs/firewall.html.in @@ -317,7 +317,7 @@ Bridge chain: PREROUTING, entries: 1, policy: ACCEPT Bridge chain: POSTROUTING, entries: 1, policy: ACCEPT -o vnet0 -j libvirt-O-vnet0 -

To keep things managable and easy to follow, the driver will then +

To keep things manageable and easy to follow, the driver will then create further sub-chains for each protocol then it needs to match against:

diff --git a/docs/formatdomain.html.in b/docs/formatdomain.html.in index a622131837..d664e7e346 100644 --- a/docs/formatdomain.html.in +++ b/docs/formatdomain.html.in @@ -425,7 +425,7 @@
The optional emulatorpin element specifies which of host physical CPUs the "emulator", a subset of a domain not including vcpu, - will be pinned to. If this is ommitted, "emulator" is pinned to all + will be pinned to. If this is omitted, "emulator" is pinned to all the physical CPUs by default. It contains one required attribute cpuset specifying which physical CPUs to pin to.
diff --git a/docs/hacking.html.in b/docs/hacking.html.in index 9de5eb1962..d41b39c490 100644 --- a/docs/hacking.html.in +++ b/docs/hacking.html.in @@ -18,7 +18,7 @@ or:

-  git diff > libvirt-myfeature.patch
+  git diff > libvirt-myfeature.patch
 

However, the usual workflow of libvirt developer is:

@@ -554,8 +554,8 @@
     

Usage of the fdopen(), close(), fclose() APIs is deprecated in libvirt code base to help avoiding double-closing of files - or file descriptors, which is particulary dangerous in a multi-threaded - applications. Instead of these APIs, use the macros from virfile.h + or file descriptors, which is particularly dangerous in a multi-threaded + application. Instead of these APIs, use the macros from virfile.h