Skip to content

) is missing in the doc #7

@ghost

Description

It seems that there is a bug in the documentation.

https://github.com/nitely/django-infinite-scroll-pagination#performance

Wrong:

class Meta:
    indexes = [
        models.Index(fields=['created_at', 'pk'],
        models.Index(fields=['-created_at', '-pk'])]

IMHO should be:

    indexes = [
            models.Index(fields=['created_at', 'pk']),
            models.Index(fields=['-created_at', '-pk'])]

Thta is a ) is missing.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions