From 1fb50a3999f62dc84b6989588a56cd3becc9e76a Mon Sep 17 00:00:00 2001 From: Kyle Kelley Date: Mon, 18 Mar 2013 18:30:05 -0300 Subject: [PATCH] Made more direct and concise The guide is opinionated, and that's ok. --- docs/writing/structure.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/writing/structure.rst b/docs/writing/structure.rst index 456fd43..cd64763 100644 --- a/docs/writing/structure.rst +++ b/docs/writing/structure.rst @@ -91,7 +91,7 @@ environment, or your project's internal modules. To keep in line with the style guide, keep module names short, lowercase, and be sure to avoid using special symbols like the dot (.) or question mark (?). -So a file name like `my.spam.py` is one you should try to avoid! Naming this way +So a file name like `my.spam.py` is one you should avoid! Naming this way will interfere with the way python looks for modules. In this example python expects to find a "spam.py" file in a folder named "my"