Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions lib/mix/lib/mix/deps/retriever.ex
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ defmodule Mix.Deps.Retriever do
@moduledoc false

@doc """
Gets all direct children for the current Mix.Project
Gets all direct children of the current Mix.Project
as a `Mix.Dep` record.
"""
def children() do
Expand All @@ -16,7 +16,7 @@ defmodule Mix.Deps.Retriever do
end

@doc """
Gets all children for a given dependency.
Gets all children of a given dependency.
"""
def children(dep, config) do
cond do
Expand All @@ -36,7 +36,7 @@ defmodule Mix.Deps.Retriever do
end

@doc """
Receives a dependency and update its status.
Updates the status of a dependency.
"""
def update(Mix.Dep[scm: scm, app: app, requirement: req, opts: opts,
manager: manager, from: from]) do
Expand Down Expand Up @@ -71,7 +71,7 @@ defmodule Mix.Deps.Retriever do

if match?({ _, req, _ } when is_regex(req), tuple) and
not String.ends_with?(from, "rebar.config") do
Mix.shell.info("[WARNING] Regex version requirement for dependencies is " <>
Mix.shell.info("[WARNING] Regex version requirements for dependencies are " <>
"deprecated, please use Mix.Version instead")
end

Expand Down