From 35e6ddfcf5eb981277b13425fe5936134f28feb3 Mon Sep 17 00:00:00 2001 From: Brian Wiborg Date: Sat, 27 Sep 2025 15:23:48 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20Fix=20typo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 966e66d..4b80057 100644 --- a/README.md +++ b/README.md @@ -100,7 +100,7 @@ class Event(Model): id = field.data.UUIDField(primary_key=True) name = field.TextField() tournament = field.ForeignKeyField('tournament.Tournament', related_name='events') - participants = field.ManyToManyField('torunament.Team', related_name='events', through='event_team') + participants = field.ManyToManyField('tournament.Team', related_name='events', through='event_team') modified = field.DatetimeField(auto_now=True) prize = field.DecimalField(max_digits=10, decimal_places=2, null=True)