doc: Fix time keeping example for the guest clock

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.
This commit is contained in:
Doug Goldstein 2012-07-21 08:14:44 -05:00 committed by Peter Krempa
parent faffe26909
commit d57e17d583

View File

@ -983,11 +983,11 @@
<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>