diff --git a/ChangeLog b/ChangeLog
index 3aa8676ece..2d1ce07ce9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon Sep 10 17:15:29 CEST 2007 Daniel Veillard
+
+ * docs/architecture.html docs/errors.html docs/format.html
+ docs/libvir.html: fixing typos spotted by Eduardo Pereira
+
Mon Sep 10 13:46:05 CEST 2007 Daniel Veillard
* src/xend_internal.c: applied patch from Hugh Brock to allow
diff --git a/docs/architecture.html b/docs/architecture.html
index cbff79a941..74a290f63b 100644
--- a/docs/architecture.html
+++ b/docs/architecture.html
@@ -48,7 +48,7 @@ Store one, the Hypervisor hypercall are all isolated in separate C modules
implementing at least a subset of the common operations defined by the
drivers present in driver.h:
- xend_internal: implements the driver functions though the Xen
Daemon
- - xs_internal: implements the subset of the driver availble though the
+
- xs_internal: implements the subset of the driver available though the
Xen Store
- xen_internal: provide the implementation of the functions possible via
direct hypervisor access
diff --git a/docs/errors.html b/docs/errors.html
index c3292a8320..fa448f140c 100644
--- a/docs/errors.html
+++ b/docs/errors.html
@@ -65,5 +65,5 @@ this point, see the error.py example about it:
def handler(ctxt, err):
errno = err
libvirt.registerErrorHandler(handler, 'context')
the second argument to the registerErrorHandler function is passed as the
-fist argument of the callback like in the C version. The error is a tuple
+first argument of the callback like in the C version. The error is a tuple
containing the same field as a virError in C, but cast to Python.