File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
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 @@ -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)
You can’t perform that action at this time.
0 commit comments