Typo and comment fixes

* docs/schemas/*.rng: the comments were wrong
* src/qemu_conf.c: typo in an error message
This commit is contained in:
Aron Griffis 2009-08-05 11:56:56 +02:00 committed by Daniel Veillard
parent a11010c07d
commit 3879b33447
5 changed files with 4 additions and 11 deletions

View File

@ -1,7 +1,6 @@
<!-- A Relax NG schema for the libvirt node device XML format -->
<!-- A Relax NG schema for the libvirt capabilities XML format -->
<grammar xmlns="http://relaxng.org/ns/structure/1.0"
datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
<!-- We handle only document defining a domain -->
<start>
<ref name='capabilities'/>
</start>

View File

@ -1,14 +1,10 @@
<!-- A Relax NG schema for the libvirt node device XML format -->
<grammar xmlns="http://relaxng.org/ns/structure/1.0"
datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
<!-- We handle only document defining a domain -->
<start>
<ref name='device'/>
</start>
<!--
We handle only document defining a domain
-->
<define name='device'>
<element name="device">
<!-- The name of the network, used to refer to it through the API

View File

@ -1,7 +1,6 @@
<!-- A Relax NG schema for the libvirt node device XML format -->
<!-- A Relax NG schema for the libvirt storage pool XML format -->
<grammar xmlns="http://relaxng.org/ns/structure/1.0"
datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
<!-- We handle only document defining a domain -->
<start>
<ref name='pool'/>
</start>

View File

@ -1,7 +1,6 @@
<!-- A Relax NG schema for the libvirt node device XML format -->
<!-- A Relax NG schema for the libvirt storage volume XML format -->
<grammar xmlns="http://relaxng.org/ns/structure/1.0"
datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
<!-- We handle only document defining a domain -->
<start>
<ref name='vol'/>
</start>

View File

@ -1970,7 +1970,7 @@ int qemudBuildCommandLine(virConnectPtr conn,
if (def->nvideos) {
if (def->nvideos > 1) {
qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
"%s", _("only one video card is currentely supported"));
"%s", _("only one video card is currently supported"));
goto error;
}