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.
(cherry picked from commit d57e17d58300589e4b53c52360d9fcd7592f53b2)
This commit is contained in:
Doug Goldstein 2012-07-21 08:14:44 -05:00 committed by Cole Robinson
parent eddceda2f3
commit d13b354bf0

View File

@ -966,11 +966,11 @@
<pre> <pre>
... ...
&lt;clock offset="localtime"&gt; &lt;clock offset='localtime'&gt;
&lt;timer name="rtc" tickpolicy="catchup" track="guest"&gt; &lt;timer name='rtc' tickpolicy='catchup' track='guest'&gt;
&lt;catchup threshold=123 slew=120 limit=10000/&gt; &lt;catchup threshold='123' slew='120' limit='10000'/&gt;
&lt;/timer&gt; &lt;/timer&gt;
&lt;timer name="pit" tickpolicy="delay"/&gt; &lt;timer name='pit' tickpolicy='delay'/&gt;
&lt;/clock&gt; &lt;/clock&gt;
...</pre> ...</pre>