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
3434 Agent.update(__MODULE__, &Set.put(&1, item))
3535 end
3636
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"
3838 def take_all() do
3939 Agent.get_and_update(__MODULE__, fn set ->
4040 {Enum.into(set, []), HashSet.new}
Original file line number Diff line number Diff line change @@ -385,7 +385,7 @@ defmodule GenServer do
385385 { :timeout , timeout } |
386386 { :spawn_opt , Process . spawn_opt }
387387
388- @ typedoc "debug options supported by the `start*` functions"
388+ @ typedoc "Debug options supported by the `start*` functions"
389389 @ type debug :: [ :trace | :log | :statistics | { :log_to_file , Path . t } ]
390390
391391 @ typedoc "The server reference"
Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ defmodule Mix.Dep do
22 @ moduledoc false
33
44 @ 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+
67 It contains:
78
89 * `scm` - a module representing the source code management tool (SCM)
You can’t perform that action at this time.
0 commit comments