Skip to content

Commit f82061f

Browse files
committed
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.
1 parent 77ead1e commit f82061f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/writing/structure.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ unwanted effects, e.g. override an existing function with the same name.
128128

129129
It is possible to simulate the more standard behavior by using a special syntax
130130
of the import statement: ``from modu import *``. This is generally considered bad
131-
practice. **Using ``import *`` makes code harder to read and makes dependencies less
131+
practice. **Using** ``import *`` **makes code harder to read and makes dependencies less
132132
compartmentalized**.
133133

134134
Using ``from modu import func`` is a way to pinpoint the function you want to

0 commit comments

Comments
 (0)