Index: /trunk/doc/manual/en_US/SDKRef.xml
===================================================================
--- /trunk/doc/manual/en_US/SDKRef.xml	(revision 35929)
+++ /trunk/doc/manual/en_US/SDKRef.xml	(revision 35930)
@@ -1448,11 +1448,21 @@
 mgr.closeMachineSession(session)
         </screen>
-
-        <para>This code also shows cross-platform access to array properties
+        <para>
+          Following code will print all registered machines and their log folders
+        </para>
+        <screen>from vboxapi import VirtualBoxManager
+mgr = VirtualBoxManager(None, None)
+vbox = mgr.vbox
+
+for m in mgr.getArray(vbox, 'machines'):
+print "Machine '%s' logs in '%s'" %(m.name, m.logFolder)
+        </screen>
+
+        <para>Code above demonstartes cross-platform access to array properties
         (certain limitations prevent one from using
         <computeroutput>vbox.machines</computeroutput> to access a list of
         available virtual machines in case of XPCOM), and a mechanism of
-        uniform session creation
-        (<computeroutput>virtualBoxManager.mgr.getSessionObject()</computeroutput>).</para>
+        uniform session creation and closing
+        (<computeroutput>mgr.mgr.getSessionObject()</computeroutput>).</para>
 
         <para>In case you want to use the glue layer with a different Python
