diff --git a/man/systemd-vmspawn.xml b/man/systemd-vmspawn.xml
index 1bd459058a..d5ece4acea 100644
--- a/man/systemd-vmspawn.xml
+++ b/man/systemd-vmspawn.xml
@@ -171,8 +171,8 @@
- Sets the machine name for this container. This
- name may be used to identify this container during its runtime
+ Sets the machine name for this virtual machine. This
+ name may be used to identify this virtual machine during its runtime
(for example in tools like
machinectl1
and similar).
@@ -189,7 +189,7 @@
ID:PATHID:VALUE
- Pass a credential to the container. These two options correspond to the
+ Pass a credential to the virtual machine. These two options correspond to the
LoadCredential= and SetCredential= settings in unit files. See
systemd.exec5 for
details about these concepts, as well as the syntax of the option's arguments.
diff --git a/src/vmspawn/vmspawn.c b/src/vmspawn/vmspawn.c
index a08bc4c679..c89c38165e 100644
--- a/src/vmspawn/vmspawn.c
+++ b/src/vmspawn/vmspawn.c
@@ -89,13 +89,14 @@ static int help(void) {
" supports Secure Boot\n"
" --firmware=PATH|list Select firmware definition file (or list available)\n"
"\n%3$sSystem Identity:%4$s\n"
- " -M --machine=NAME Set the machine name for the container\n"
+ " -M --machine=NAME Set the machine name for the virtual machine\n"
"\n%3$sCredentials:%4$s\n"
" --set-credential=ID:VALUE\n"
- " Pass a credential with literal value to container.\n"
+ " Pass a credential with literal value to the\n"
+ " virtual machine\n"
" --load-credential=ID:PATH\n"
- " Load credential to pass to container from file or\n"
- " AF_UNIX stream socket.\n"
+ " Load credential to pass to the virtual machine from\n"
+ " file or AF_UNIX stream socket.\n"
"\nSee the %2$s for details.\n",
program_invocation_short_name,
link,