Changes between Version 1 and Version 2 of Ticket #33756


Ignore:
Timestamp:
May 31, 2022, 11:38:52 AM (2 years ago)
Author:
Mariusz Felisiak
Comment:

Thanks for the report, however we try to avoid trivial code reformatting unless it's a big problem as it creates extra noise in the history. I don't think this affects the readability of these snippets.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #33756

    • Property Resolutioninvalid
    • Property Status newclosed
  • Ticket #33756 – Description

    v1 v2  
    22
    33One difference between the code snippets that obfuscates rather than illuminates the difference is the line(s):
    4 
     4{{{
    55    context = {
    66        'latest_question_list': latest_question_list,
    77    }
    8 
     8}}}
    99and
    10 
     10{{{
    1111    context = {'latest_question_list': latest_question_list}
    12 
     12}}}
    1313If this was consistently a multiline or single line across the snippets, that would make it easier for beginning Django users to glance at and understand the difference.
    1414 
Back to Top