File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ you'll find errors sooner.
21
21
22
22
.. note ::
23
23
24
- The command-line of interface of mypy daemon may change in future mypy
24
+ The command-line interface of mypy daemon may change in future mypy
25
25
releases.
26
26
27
27
.. note ::
@@ -35,7 +35,7 @@ Basic usage
35
35
***********
36
36
37
37
The client utility ``dmypy `` is used to control the mypy daemon.
38
- Use ``dmypy run -- <flags> <files> `` to typecheck a set of files
38
+ Use ``dmypy run -- <flags> <files> `` to type check a set of files
39
39
(or directories). This will launch the daemon if it is not running.
40
40
You can use almost arbitrary mypy flags after ``-- ``. The daemon
41
41
will always run on the current host. Example::
@@ -175,7 +175,7 @@ In this example, the function ``format_id()`` has no annotation:
175
175
176
176
root = format_id(0 )
177
177
178
- ``dymypy suggest `` uses call sites, return statements, and other heuristics (such as
178
+ ``dmypy suggest `` uses call sites, return statements, and other heuristics (such as
179
179
looking for signatures in base classes) to infer that ``format_id() `` accepts
180
180
an ``int `` argument and returns a ``str ``. Use ``dmypy suggest module.format_id `` to
181
181
print the suggested signature for the function.
You can’t perform that action at this time.
0 commit comments