diff options
| author | Daniel D. Beck <me@danieldbeck.com> | 2012-10-10 20:38:48 -0300 |
|---|---|---|
| committer | Daniel D. Beck <me@danieldbeck.com> | 2012-10-10 20:38:48 -0300 |
| commit | f315006d50a1391393507cef1c52147cb766e45d (patch) | |
| tree | 6abfee1b33866c12bd9b1def83e24893290b2d26 /docs/internals/contributing/writing-code/coding-style.txt | |
| parent | f7b69665fd0ce21adae7cfaed7fade63f8aae1fd (diff) | |
Remove heteronormativity from coding style doc
Diffstat (limited to 'docs/internals/contributing/writing-code/coding-style.txt')
| -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`` |
