Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #93

Merged
merged 1 commit into from
May 10, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Values can be set either by assigning an Address object:
Or by supplying a dictionary of address components:

```python
obj.address = {'street_number': '1', route='Somewhere Ave', ...}
obj.address = {'street_number': '1', 'route': 'Somewhere Ave', ...}
```

The structure of the address components is as follows:
Expand Down Expand Up @@ -145,7 +145,7 @@ The model:
from address.models import AddressField

class Person(models.Model):
address = AddressField()
address = AddressField(on_delete=models.CASCADE)
```

The form:
Expand Down