Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion lib/ex_unit/lib/ex_unit/assertions.ex
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ defmodule ExUnit.Assertions do
"""

@doc """
Asserts it's argument is true.
Asserts its argument is true.

`assert` tries to be smart and provide good
reporting whenever there is a failure. In particular, if
Expand Down
2 changes: 1 addition & 1 deletion lib/mix/lib/mix/dep.ex
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ defmodule Mix.Dep do
end

@doc """
Receives a list of dependency names and returns loaded `Mix.Dep`s.
Receives a list of dependency names and returns loaded `Mix.Dep`s.
Logs a message if the dependency could not be found.

## Exceptions
Expand Down
2 changes: 1 addition & 1 deletion lib/mix/lib/mix/remote_converger.ex
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule Mix.RemoteConverger do
defcallback converge([Mix.Dep.t], map) :: map

@doc """
Returns a child dependencies the converger has for the
Returns child dependencies the converger has for the
dependency. This list should filter the loaded children.
"""
defcallback deps(Mix.Dep.t, map) :: [atom]
Expand Down
8 changes: 4 additions & 4 deletions lib/mix/lib/mix/scm.ex
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,11 @@ defmodule Mix.SCM do
@doc """
This behaviour function checks the status of the lock. In
particular, it checks if the revision stored in the lock
is the same as the repository is currently in. It may return:
is the same as the repository it is currently in. It may return:

* `:mismatch` - if the lock doesn't match and we need to
simply move to the latest lock
* `:outdated` - the repository options are out of dated in the
* `:outdated` - the repository options are outdated in the
lock and we need to trigger a full update
* `:ok` - everything is fine

Expand All @@ -106,7 +106,7 @@ defmodule Mix.SCM do
defcallback equal?(opts1 :: opts, opts2 :: opts) :: boolean

@doc """
Returns all available SCM. Each SCM is tried in order
Returns all available SCMs. Each SCM is tried in order
until a matching one is found.
"""
def available do
Expand All @@ -123,7 +123,7 @@ defmodule Mix.SCM do
end

@doc """
Aopend the given SCM module to the list of available SCMs.
Append the given SCM module to the list of available SCMs.
"""
def append(mod) when is_atom(mod) do
available = Enum.reject(available(), &(&1 == mod))
Expand Down