summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorsdolemelipone <mark.gensler@protonmail.com>2022-12-05 05:06:09 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2022-12-05 05:06:32 +0100
commit0abd8f1cb8a9bab4627f5798ff5a87c32926b562 (patch)
treed19dc8fcac909ac639caa997443894fcb3a85376 /docs
parenteccda63a49b92ab14d523d69da2a3b3246cf91d1 (diff)
Fixed typo in docs/ref/contrib/postgres/aggregates.txt.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/contrib/postgres/aggregates.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/contrib/postgres/aggregates.txt b/docs/ref/contrib/postgres/aggregates.txt
index 285e86f5d5..d8964115e0 100644
--- a/docs/ref/contrib/postgres/aggregates.txt
+++ b/docs/ref/contrib/postgres/aggregates.txt
@@ -157,7 +157,7 @@ General-purpose aggregation functions
class Room(models.Model):
number = models.IntegerField(unique=True)
- class HotelReservation(model.Model):
+ class HotelReservation(models.Model):
room = models.ForeignKey('Room', on_delete=models.CASCADE)
start = models.DateTimeField()
end = models.DateTimeField()