From d13b354bf0044e2a4ac351d22deee94cf79b6a3a Mon Sep 17 00:00:00 2001 From: Doug Goldstein Date: Sat, 21 Jul 2012 08:14:44 -0500 Subject: [PATCH] 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) --- docs/formatdomain.html.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/formatdomain.html.in b/docs/formatdomain.html.in index b7d82abe97..dece59cf7e 100644 --- a/docs/formatdomain.html.in +++ b/docs/formatdomain.html.in @@ -966,11 +966,11 @@
   ...
-  <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>
   ...