Rafał Pitoń 11 лет назад
Родитель
Сommit
96e0b6ae00
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      docs/coding_style.rst

+ 1 - 1
docs/coding_style.rst

@@ -65,7 +65,7 @@ In addition to views and forms definitions, those files can also contain helper
 View Arguments
 --------------
 
-As convention, declare view arguments in order they are being used in view's code. This means pk before slug, because view has to get model from database before it validates its slug.
+As convention, declare view arguments in order they are being used in view's code. Most common example of this is pk being declared before slug, as view has to get model from database before it validates its slug.
 
 
 Templates