Skip to content

Commit ac31bce

Browse files
cehmsullivan
authored andcommitted
docs: fix minor typos (#5157)
1 parent f3cb59a commit ac31bce

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

docs/source/additional_features.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ build::
307307

308308
This flag adds extra information for the daemon to the cache. In
309309
order to use this extra information, you will also need to use the
310-
``--use-fine-grained-cache`` option with ``dymypy start`` or
310+
``--use-fine-grained-cache`` option with ``dmypy start`` or
311311
``dmypy restart``. Example::
312312

313313
$ dmypy start -- --use-fine-grained-cache <options...>

docs/source/common_issues.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ understand how mypy handles a particular piece of code. Example:
417417
reveal_type((1, 'hello')) # Revealed type is 'Tuple[builtins.int, builtins.str]'
418418
419419
You can also use ``reveal_locals()`` at any line in a file
420-
to see the types of all local varaibles at once. Example:
420+
to see the types of all local variables at once. Example:
421421

422422
.. code-block:: python
423423

docs/source/config_file.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ overridden by the pattern sections matching the module name.
183183
Used in conjunction with ``follow_imports=skip``, this can be used
184184
to suppress the import of a module from ``typeshed``, replacing it
185185
with `Any`.
186-
Used in conjuncation with ``follow_imports=error``, this can be used
186+
Used in conjunction with ``follow_imports=error``, this can be used
187187
to make any use of a particular ``typeshed`` module an error.
188188

189189
- ``ignore_missing_imports`` (Boolean, default False) suppress error

docs/source/kinds_of_types.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ This also works for attributes defined within methods:
346346
347347
As a special case, you can use a non-optional type when initializing an
348348
attribute to ``None`` inside a class body *and* using a type comment,
349-
since when using a type comment, an initializer is syntacticaly required,
349+
since when using a type comment, an initializer is syntactically required,
350350
and ``None`` is used as a dummy, placeholder initializer:
351351

352352
.. code-block:: python

docs/source/mypy_daemon.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Additional features
7070

7171
You have precise control over the lifetime of the daemon process:
7272

73-
* ``dymypy stop`` stops the daemon.
73+
* ``dmypy stop`` stops the daemon.
7474

7575
* ``dmypy restart -- <flags>`` restarts the daemon. The flags are the same
7676
as with ``dmypy start``. This is equivalent to a stop command followed

0 commit comments

Comments
 (0)