diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2012-10-15 07:45:27 -0700 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2012-10-15 07:45:27 -0700 |
| commit | 72efdc4d9229231ac44303fba1c504705f1515d6 (patch) | |
| tree | d23867c936f3beaf2ebafc62f53d1621edff3d70 /docs/internals/contributing/writing-code | |
| parent | 05b849162266c0df355bccdf53bd1e0617a19bb0 (diff) | |
| parent | f315006d50a1391393507cef1c52147cb766e45d (diff) | |
Merge pull request #436 from ddbeck/patch-1
Removed heteronormativity from coding style doc
Diffstat (limited to 'docs/internals/contributing/writing-code')
| -rw-r--r-- | docs/internals/contributing/writing-code/coding-style.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/internals/contributing/writing-code/coding-style.txt b/docs/internals/contributing/writing-code/coding-style.txt index 2fa0233e3d..a699e39bd8 100644 --- a/docs/internals/contributing/writing-code/coding-style.txt +++ b/docs/internals/contributing/writing-code/coding-style.txt @@ -140,9 +140,9 @@ Model style a tuple of tuples, with an all-uppercase name, either near the top of the model module or just above the model class. Example:: - GENDER_CHOICES = ( - ('M', 'Male'), - ('F', 'Female'), + DIRECTION_CHOICES = ( + ('U', 'Up'), + ('D', 'Down'), ) Use of ``django.conf.settings`` |
