]> xenbits.xensource.com Git - libvirt.git/commitdiff
doc: Fix time keeping example for the guest clock
authorDoug Goldstein <cardoe@cardoe.com>
Sat, 21 Jul 2012 13:14:44 +0000 (08:14 -0500)
committerPeter Krempa <pkrempa@redhat.com>
Mon, 23 Jul 2012 09:22:32 +0000 (11:22 +0200)
The time keeping example was missing quotes which resulted in an error
if you copied and pasted the example into a domain's XML. Additionally
the rest of the examples use single quotes (') instead of double quotes
(") so standardized that.

docs/formatdomain.html.in

index b6e0d5dc5bcaf9babcb20a184a91d95899c4322e..b8db76e3d6c7f900d7253a0f6a712c139af4a97b 100644 (file)
 
 <pre>
   ...
-  &lt;clock offset="localtime"&gt;
-    &lt;timer name="rtc" tickpolicy="catchup" track="guest"&gt;
-      &lt;catchup threshold=123 slew=120 limit=10000/&gt;
+  &lt;clock offset='localtime'&gt;
+    &lt;timer name='rtc' tickpolicy='catchup' track='guest'&gt;
+      &lt;catchup threshold='123' slew='120' limit='10000'/&gt;
     &lt;/timer&gt;
-    &lt;timer name="pit" tickpolicy="delay"/&gt;
+    &lt;timer name='pit' tickpolicy='delay'/&gt;
   &lt;/clock&gt;
   ...</pre>