File tree Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ defmodule Kernel do
140
140
precedence
141
141
* [Syntax Reference](syntax-reference.html) - the language syntax reference
142
142
* [Typespecs](typespecs.html)- types and function specifications, including list of types
143
- * [Unicode Syntax](unicode-syntax.html) - outline Elixir support for Unicode
143
+ * [Unicode Syntax](unicode-syntax.html) - outlines Elixir support for Unicode
144
144
* [Writing Documentation](writing-documentation.html) - guidelines for
145
145
writing documentation in Elixir.
146
146
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ defmodule Mix.Tasks.Compile do
48
48
* `--no-deps-check` - skips checking of dependencies
49
49
* `--no-protocol-consolidation` - skips protocol consolidation
50
50
* `--force` - forces compilation
51
- * `--return-errors` - return error status and diagnostics instead of exiting on error
51
+ * `--return-errors` - returns error status and diagnostics instead of exiting on error
52
52
* `--erl-config` - path to an Erlang term file that will be loaded as mix config
53
53
54
54
"""
Original file line number Diff line number Diff line change @@ -50,18 +50,18 @@ defmodule Mix.Tasks.Format do
50
50
51
51
## Task-specific options
52
52
53
- * `--check-formatted` - check that the file is already formatted.
53
+ * `--check-formatted` - checks that the file is already formatted.
54
54
This is useful in pre-commit hooks and CI scripts if you want to
55
55
reject contributions with unformatted code. However keep in mind
56
56
that the formatted output may differ between Elixir versions as
57
57
improvements and fixes are applied to the formatter.
58
58
59
- * `--check-equivalent` - check if the files after formatting have the
59
+ * `--check-equivalent` - checks if the files after formatting have the
60
60
same AST as before formatting. If the ASTs are not equivalent,
61
61
it is a bug in the code formatter. This option is recommended if you
62
62
are automatically formatting files.
63
63
64
- * `--dry-run` - do not save files after formatting.
64
+ * `--dry-run` - does not save files after formatting.
65
65
66
66
* `--dot-formatter` - path to the file with formatter configuration.
67
67
Defaults to `.formatter.exs` if one is available. See the "`.formatter.exs`"
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ defmodule Mix.Tasks.Profile.Eprof do
26
26
* `--matching` - only profile calls matching the given `Module.function/arity` pattern
27
27
* `--calls` - filters out any results with a call count lower than this
28
28
* `--time` - filters out any results that took lower than specified (in µs)
29
- * `--sort` - sort the results by `time` or `calls` (default: `time`)
29
+ * `--sort` - sorts the results by `time` or `calls` (default: `time`)
30
30
* `--config`, `-c` - loads the given configuration file
31
31
* `--eval`, `-e` - evaluate the given code
32
32
* `--require`, `-r` - requires pattern before running the command
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ defmodule Mix.Tasks.Xref do
72
72
* `--label` - only shows relationships with the given label
73
73
The labels are "compile", "struct" and "runtime" (runtime is now shown on the graph)
74
74
75
- * `--only-nodes` - only show the node names (no edges)
75
+ * `--only-nodes` - only shows the node names (no edges)
76
76
77
77
* `--source` - displays all files that the given source file references (directly or indirectly)
78
78
@@ -113,9 +113,9 @@ defmodule Mix.Tasks.Xref do
113
113
114
114
Those options are shared across all modes:
115
115
116
- * `--include-siblings` - include dependencies that have `:in_umbrella` set
116
+ * `--include-siblings` - includes dependencies that have `:in_umbrella` set
117
117
to true in the current project in the reports. This can be used to find
118
- callers or analyze graphs between projects
118
+ callers or to analyze graphs between projects
119
119
120
120
* `--no-compile` - does not compile even if files require compilation
121
121
You can’t perform that action at this time.
0 commit comments