From 21d8f91ac6e5228780736c527b6821be3814d7a4 Mon Sep 17 00:00:00 2001 From: imranghory Date: Sat, 25 Jan 2014 14:37:18 +0000 Subject: [PATCH] Make explicit whats being referred to --- 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 0529b21..6ebd5d8 100644 --- a/docs/writing/structure.rst +++ b/docs/writing/structure.rst @@ -94,7 +94,7 @@ 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 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" +In the case of `my.spam.py` python expects to find a "spam.py" file in a folder named "my" which is not the case. There is an `example `_ of how the dot notation should be used in the python docs.