From c9811b2c034dd5986f5c6011f31c06f5e0480a4c Mon Sep 17 00:00:00 2001 From: Emil Hessman Date: Sat, 11 Aug 2018 06:20:38 +0200 Subject: [PATCH] Fix minor docs typos --- docs/source/command_line.rst | 2 +- docs/source/running_mypy.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/command_line.rst b/docs/source/command_line.rst index 48d60522762d..779fe39cc5f4 100644 --- a/docs/source/command_line.rst +++ b/docs/source/command_line.rst @@ -273,7 +273,7 @@ For more details, see :ref:`no_strict_optional`. For example, by default mypy will assume that the ``x`` parameter is of type ``Optional[int]`` in the code snippet below since - the default pararameter is ``None``: + the default parameter is ``None``: .. code-block:: python diff --git a/docs/source/running_mypy.rst b/docs/source/running_mypy.rst index 949538642f93..0fb9c2ac9377 100644 --- a/docs/source/running_mypy.rst +++ b/docs/source/running_mypy.rst @@ -131,7 +131,7 @@ Missing imports When you import a module, mypy may report that it is unable to follow the import. -This could happen if the code is importing a non-existant module +This could happen if the code is importing a non-existent module or if the code is importing a library that does not use type hints. Specifically, the library is neither declared to be a :ref:`PEP 561 compliant package ` nor has registered