From f1a5400d191c96b9f0f428ff57efab547fb66a9c Mon Sep 17 00:00:00 2001 From: Roman Sirokov Date: Sun, 3 Jul 2022 00:44:50 +0200 Subject: [PATCH] Minor typo fix in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1975db0..bbfc086 100644 --- a/README.md +++ b/README.md @@ -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: