From 2396ac537dbfd7f85a6e11ca6903a14e0ebb3aca Mon Sep 17 00:00:00 2001 From: Radoslav Georgiev Date: Wed, 19 Feb 2025 10:27:12 +0200 Subject: [PATCH] Fix a typo - Fixes #167 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9591125..7d9b9f5 100644 --- a/README.md +++ b/README.md @@ -293,7 +293,7 @@ This also plays well with Django admin, because the forms used there will trigge As proposed in [this issue](https://github.com/HackSoftware/Django-Styleguide/issues/22), if you can do validation using [Django's constraints](https://docs.djangoproject.com/en/dev/ref/models/constraints/), then you should aim for that. -Less code to write, less to code to maintain, the database will take care of the data even if it's being inserted from a different place. +Less code to write, less code to maintain, the database will take care of the data even if it's being inserted from a different place. Lets look at an example!