Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
goto cleanup;
/* let's print the currently connected clients and some basic info about
- * them, we have 2 options how to interate over the returned list,
+ * them, we have 2 options how to iterate over the returned list,
* use @count as the boundary or use the fact that @clients are guaranteed
* to contain 1 extra element NULL;
* this example uses the first option
if ((count = virAdmConnectListServers(conn, &servers, 0)) < 0)
goto cleanup;
- /* let's print the available servers, we have 2 options how to interate
+ /* let's print the available servers, we have 2 options how to iterate
* over the returned list, use @count as the boundary or use the fact
* that @servers are guaranteed to contain 1 extra element NULL;
* this example uses the second option
/**
- * section: Informations
+ * section: Information
* synopsis: Extract information about Xen domain 0
* purpose: Demonstrate the basic use of the library to connect to the
* hypervisor and extract domain information.