Skip to content

Commit 26239c5

Browse files
authored
Fix a few cases if invalid emphasis syntax in documentation (#4337)
_foo_ isn't used for emphasis in rst.
1 parent 38afbd2 commit 26239c5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/source/command_line.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ same directory on the search path, only the stub file is used.
176176
in the earlier directory is used.)
177177

178178
NOTE: These rules are relevant to the following section too:
179-
the ``--follow-imports`` flag described below is applied _after_ the
179+
the ``--follow-imports`` flag described below is applied *after* the
180180
above algorithm has determined which package, stub or module to use.
181181

182182
.. _follow-imports:

docs/source/config_file.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -142,13 +142,13 @@ overridden by the pattern sections matching the module name.
142142
``error``. For explanations see the discussion for the
143143
:ref:`--follow-imports <follow-imports>` command line flag. Note
144144
that if pattern matching is used, the pattern should match the name
145-
of the _imported_ module, not the module containing the import
145+
of the *imported* module, not the module containing the import
146146
statement.
147147

148148
- ``ignore_missing_imports`` (Boolean, default False) suppress error
149149
messages about imports that cannot be resolved. Note that if
150150
pattern matching is used, the pattern should match the name of the
151-
_imported_ module, not the module containing the import statement.
151+
*imported* module, not the module containing the import statement.
152152

153153
- ``silent_imports`` (Boolean, deprecated) equivalent to
154154
``follow_imports=skip`` plus ``ignore_missing_imports=True``.

0 commit comments

Comments
 (0)