From fe3ce7d3009779f959bcfed5f665361201439b62 Mon Sep 17 00:00:00 2001 From: Alex Couper Date: Fri, 31 May 2013 03:40:25 -0700 Subject: [PATCH] Fix grammar. --- Large-app-how-to.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Large-app-how-to.md b/Large-app-how-to.md index 63f3c88..03354e0 100644 --- a/Large-app-how-to.md +++ b/Large-app-how-to.md @@ -183,7 +183,7 @@ and its constants in the `/app/users/constants.py` file: } ``` -First about the constants file, I like to have my constants in their own file and inside my module for 2 main reasons. Your constants will probably be used in your models, forms and views. The second reason is that it's a better organization for you to find them. Also, importing your constants as the module in uppercase indicates the constant type and the module name (like `USER` for `users.constants`) will avoid you name conflicts. +First about the constants file, I like to have my constants in their own file and inside my module for 2 main reasons. Your constants will probably be used in your models, forms and views. The second reason is that it's a better organization for you to find them. Also, importing your constants as the module in uppercase indicates the constant type and the module name (like `USER` for `users.constants`) will help you avoid name conflicts. ### First form