From f82061f7fc62128bac93cc643ead79179ffc96ed Mon Sep 17 00:00:00 2001 From: Shayne Hodge Date: Fri, 9 May 2014 15:41:52 -0700 Subject: [PATCH] fix nested markup, literal doesn't work Inline markup can't be nested, see http://docutils.sourceforge.net/docs/user/rst/quickref.html#inline-markup, last sentence. --- 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 3589720..299fe19 100644 --- a/docs/writing/structure.rst +++ b/docs/writing/structure.rst @@ -128,7 +128,7 @@ unwanted effects, e.g. override an existing function with the same name. It is possible to simulate the more standard behavior by using a special syntax of the import statement: ``from modu import *``. This is generally considered bad -practice. **Using ``import *`` makes code harder to read and makes dependencies less +practice. **Using** ``import *`` **makes code harder to read and makes dependencies less compartmentalized**. Using ``from modu import func`` is a way to pinpoint the function you want to