File tree Expand file tree Collapse file tree 5 files changed +14
-13
lines changed Expand file tree Collapse file tree 5 files changed +14
-13
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ defmodule Agent do
34
34
Agent.update(__MODULE__, &Set.put(&1, item))
35
35
end
36
36
37
- @doc "Reset the executed tasks and return the previous list of tasks"
37
+ @doc "Resets the executed tasks and return the previous list of tasks"
38
38
def take_all() do
39
39
Agent.get_and_update(__MODULE__, fn set ->
40
40
{Enum.into(set, []), HashSet.new}
Original file line number Diff line number Diff line change @@ -385,7 +385,7 @@ defmodule GenServer do
385
385
{ :timeout , timeout } |
386
386
{ :spawn_opt , Process . spawn_opt }
387
387
388
- @ typedoc "debug options supported by the `start*` functions"
388
+ @ typedoc "Debug options supported by the `start*` functions"
389
389
@ type debug :: [ :trace | :log | :statistics | { :log_to_file , Path . t } ]
390
390
391
391
@ typedoc "The server reference"
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ defmodule IO.ANSI do
51
51
@ doc "Faint (decreased intensity), not widely supported"
52
52
defsequence :faint , 2
53
53
54
- @ doc "Italic: on. Not widely supported. Sometimes treated as inverse. "
54
+ @ doc "Italic: on. Not widely supported. Sometimes treated as inverse"
55
55
defsequence :italic , 3
56
56
57
57
@ doc "Underline: Single"
@@ -72,7 +72,7 @@ defmodule IO.ANSI do
72
72
@ doc "Conceal. Not widely supported"
73
73
defsequence :conceal , 8
74
74
75
- @ doc "Crossed-out. Characters legible, but marked for deletion. Not widely supported. "
75
+ @ doc "Crossed-out. Characters legible, but marked for deletion. Not widely supported"
76
76
defsequence :crossed_out , 9
77
77
78
78
@ doc "Sets primary (default) font"
@@ -126,10 +126,10 @@ defmodule IO.ANSI do
126
126
@ doc "Not overlined"
127
127
defsequence :not_overlined , 55
128
128
129
- @ doc "Send cursor home"
129
+ @ doc "Sends cursor home"
130
130
defsequence :home , "" , "H"
131
131
132
- @ doc "Clear screen"
132
+ @ doc "Clears screen"
133
133
defsequence :clear , "2" , "J"
134
134
135
135
defp format_sequence ( other ) do
Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ defmodule Mix.Dep do
2
2
@ moduledoc false
3
3
4
4
@ doc """
5
- The Mix.Dep a struct keeps information about your project dependencies.
5
+ The Mix.Dep struct keeps information about your project dependencies.
6
+
6
7
It contains:
7
8
8
9
* `scm` - a module representing the source code management tool (SCM)
Original file line number Diff line number Diff line change 1
1
defmodule Mix.Tasks.Deps.Clean do
2
2
use Mix.Task
3
3
4
- @ shortdoc "Removes the given dependencies' files"
4
+ @ shortdoc "Deletes the given dependencies' files"
5
5
6
6
@ moduledoc """
7
- Removes the given dependencies' files, including build artifacts and fetched
7
+ Deletes the given dependencies' files, including build artifacts and fetched
8
8
sources.
9
9
10
10
Since this is a destructive action, cleaning of dependencies
11
11
can only happen by passing arguments/options:
12
12
13
- * `dep1, dep2` - the name of dependencies to be removed
14
- * `--all` - removes all dependencies
15
- * `--unused` - removes only unused dependencies (no longer mentioned
13
+ * `dep1, dep2` - the name of dependencies to be deleted
14
+ * `--all` - deletes all dependencies
15
+ * `--unused` - deletes only unused dependencies (no longer mentioned
16
16
in the `mix.exs` file)
17
- * `--unlock` - also unlock the removed dependencies
17
+ * `--unlock` - also unlocks the deleted dependencies
18
18
19
19
By default this task works across all environments, unless `--only`
20
20
is given.
You can’t perform that action at this time.
0 commit comments