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.
<pre>
...
- <clock offset="localtime">
- <timer name="rtc" tickpolicy="catchup" track="guest">
- <catchup threshold=123 slew=120 limit=10000/>
+ <clock offset='localtime'>
+ <timer name='rtc' tickpolicy='catchup' track='guest'>
+ <catchup threshold='123' slew='120' limit='10000'/>
</timer>
- <timer name="pit" tickpolicy="delay"/>
+ <timer name='pit' tickpolicy='delay'/>
</clock>
...</pre>