Skip to content

Fix a few cases of invalid emphasis syntax in documentation #4337

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 8, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/source/command_line.rst
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ same directory on the search path, only the stub file is used.
in the earlier directory is used.)

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

.. _follow-imports:
Expand Down
4 changes: 2 additions & 2 deletions docs/source/config_file.rst
Original file line number Diff line number Diff line change
Expand Up @@ -142,13 +142,13 @@ overridden by the pattern sections matching the module name.
``error``. For explanations see the discussion for the
:ref:`--follow-imports <follow-imports>` command line flag. Note
that if pattern matching is used, the pattern should match the name
of the _imported_ module, not the module containing the import
of the *imported* module, not the module containing the import
statement.

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

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