Skip to content

Commit

Permalink
[4.1.x] Fixed typo in docs/ref/contrib/postgres/aggregates.txt.
Browse files Browse the repository at this point in the history
Backport of 0abd8f1 from main
  • Loading branch information
sdolemelipone authored and felixxm committed Dec 5, 2022
1 parent 58156f4 commit a196dcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/ref/contrib/postgres/aggregates.txt
Expand Up @@ -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()
Expand Down

0 comments on commit a196dcc

Please sign in to comment.