examples: fix misc spelling errors reported by codespell

Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
Daniel P. Berrangé 2020-10-02 15:07:27 +01:00
parent e0f54d6663
commit 30703564c2
3 changed files with 3 additions and 3 deletions

View File

@ -80,7 +80,7 @@ int main(int argc, char **argv)
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

View File

@ -19,7 +19,7 @@ int main(void)
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

View File

@ -1,5 +1,5 @@
/**
* 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.