Ticket #11354: r11086_text_fix.diff

File r11086_text_fix.diff, 634 bytes (added by flebel, 15 years ago)

Patch file for r11086

  • docs/ref/models/querysets.txt

     
    3535
    3636    * **Slicing.** As explained in :ref:`limiting-querysets`, a ``QuerySet`` can
    3737      be sliced, using Python's array-slicing syntax. Usually slicing a
    38       ``QuerySet`` returns another (unevaluated ) ``QuerySet``, but Django will
     38      ``QuerySet`` returns another (unevaluated) ``QuerySet``, but Django will
    3939      execute the database query if you use the "step" parameter of slice
    4040      syntax.
    4141
Back to Top