PacktPublishing / Django-5-By-Example

Django 5 By Example (5th Edition) published by Packt
https://djangobyexample.com/
MIT License
244 stars 106 forks source link

Typo on page 39, chapter 1 #25

Open para-ice opened 4 months ago

para-ice commented 4 months ago

Post.objects.filter(id_lt=3).count() # only 1 underscore Post.objects.filter(id__lt=3).count() # 2 underscores are the right way