Commit f7b1a028 authored by Hanno Schlichting's avatar Hanno Schlichting

There's always one more typo...

parent 68794ad8
...@@ -284,7 +284,7 @@ Here's an example of how you did work with object managers before:: ...@@ -284,7 +284,7 @@ Here's an example of how you did work with object managers before::
>>> folder = Folder('folder') >>> folder = Folder('folder')
>>> item1 = SimpleItem('item1') >>> item1 = SimpleItem('item1')
>>> item2 = SimpleItem('item1') >>> item2 = SimpleItem('item2')
>>> result = folder._setObject('item1', item1) >>> result = folder._setObject('item1', item1)
>>> result = folder._setObject('item2', item2) >>> result = folder._setObject('item2', item2)
...@@ -305,7 +305,7 @@ Instead of this special API, you can now use:: ...@@ -305,7 +305,7 @@ Instead of this special API, you can now use::
>>> folder = Folder('folder') >>> folder = Folder('folder')
>>> item1 = SimpleItem('item1') >>> item1 = SimpleItem('item1')
>>> item2 = SimpleItem('item1') >>> item2 = SimpleItem('item2')
>>> folder['item1'] = item1 >>> folder['item1'] = item1
>>> folder['item2'] = item2 >>> folder['item2'] = item2
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment