From 30703564c2ac8d95279801a821cf5510fa4b8149 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= Date: Fri, 2 Oct 2020 15:07:27 +0100 Subject: [PATCH] examples: fix misc spelling errors reported by codespell MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-by: Peter Krempa Signed-off-by: Daniel P. Berrangé --- examples/c/admin/list_clients.c | 2 +- examples/c/admin/list_servers.c | 2 +- examples/c/domain/info1.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/c/admin/list_clients.c b/examples/c/admin/list_clients.c index 2876637d42..70907b4fba 100644 --- a/examples/c/admin/list_clients.c +++ b/examples/c/admin/list_clients.c @@ -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 diff --git a/examples/c/admin/list_servers.c b/examples/c/admin/list_servers.c index e53cd3b48f..a5e91e1167 100644 --- a/examples/c/admin/list_servers.c +++ b/examples/c/admin/list_servers.c @@ -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 diff --git a/examples/c/domain/info1.c b/examples/c/domain/info1.c index f0ea9b9f08..6e315052e2 100644 --- a/examples/c/domain/info1.c +++ b/examples/c/domain/info1.c @@ -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.