Преглед изворни кода

Fixed svg layout and some typos.

Nuwan Goonasekera пре 10 година
родитељ
комит
009e2749b5

+ 2 - 2
docs/extras/_images/object_relationships_detailed.svg

@@ -8,9 +8,9 @@
    xmlns:xlink="http://www.w3.org/1999/xlink"
    xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
    xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   viewBox="0 0 1000 700"
+   viewBox="0 0 1000 800"
    width="700"
-   height="700"
+   height="650"
    preserveAspectRatio="xMinYMin meet"
    id="svg3515"
    version="1.1"

+ 1 - 2
docs/topics/paging_and_iteration.rst

@@ -31,7 +31,7 @@ Example:
     if (rl.is_truncated)
         rl = provider.compute.instances.list(limit=100,
                                              marker=rl.marker)
-"""
+
 
 To ease development, CloudBridge also provides standard Python iterators that will page
 the results in for you automatically. Therefore, when you need to iterate through all
@@ -44,4 +44,3 @@ Example:
     # Iterate through all results
     for instance in provider.compute.instances:
         print("Instance Data: {0}", instance)
-"""