diff --git a/README.rst b/README.rst index dc76c4c..556eaf2 100644 --- a/README.rst +++ b/README.rst @@ -73,7 +73,7 @@ mappings converted to Attrs:: > attr = AttrDict({'foo': [{'bar': 'baz'}, {'bar': 'qux'}]}) > for sub_attr in attr.foo: - > print(subattr.foo) + > print(sub_attr.bar) 'baz' 'qux'