Merge pull request #101 from romatallinn/patch-1

Minor typo fix in README
This commit is contained in:
Martin Angelov 2022-10-30 11:11:29 +02:00 committed by GitHub
commit 9c763eec2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -254,7 +254,7 @@ We are defining the model's `clean` method, because we want to make sure we get
Now, in order for the `clean` method to be called, someone must call `full_clean` on an instance of our model, before saving.
**Our recommendation is to do that in the service, right before calling clean:**
**Our recommendation is to do that in the service, right before calling save:**
```python
def course_create(*, name: str, start_date: date, end_date: date) -> Course: