Minor typo fix in README

This commit is contained in:
Roman Sirokov 2022-07-03 00:44:50 +02:00 committed by GitHub
parent ec20b3f0f7
commit f1a5400d19
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: