File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ defmodule Mix.Dep do
62
62
end
63
63
64
64
@ doc """
65
- Receives a list of dependency names and returns loaded `Mix.Dep`s.
65
+ Receives a list of dependency names and returns loaded `Mix.Dep`s.
66
66
Logs a message if the dependency could not be found.
67
67
68
68
## Exceptions
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ defmodule Mix.RemoteConverger do
20
20
defcallback converge ( [ Mix.Dep . t ] , map ) :: map
21
21
22
22
@ doc """
23
- Returns a child dependencies the converger has for the
23
+ Returns child dependencies the converger has for the
24
24
dependency. This list should filter the loaded children.
25
25
"""
26
26
defcallback deps ( Mix.Dep . t , map ) :: [ atom ]
Original file line number Diff line number Diff line change @@ -80,11 +80,11 @@ defmodule Mix.SCM do
80
80
@ doc """
81
81
This behaviour function checks the status of the lock. In
82
82
particular, it checks if the revision stored in the lock
83
- is the same as the repository is currently in. It may return:
83
+ is the same as the repository it is currently in. It may return:
84
84
85
85
* `:mismatch` - if the lock doesn't match and we need to
86
86
simply move to the latest lock
87
- * `:outdated` - the repository options are out of dated in the
87
+ * `:outdated` - the repository options are outdated in the
88
88
lock and we need to trigger a full update
89
89
* `:ok` - everything is fine
90
90
@@ -106,7 +106,7 @@ defmodule Mix.SCM do
106
106
defcallback equal? ( opts1 :: opts , opts2 :: opts ) :: boolean
107
107
108
108
@ doc """
109
- Returns all available SCM . Each SCM is tried in order
109
+ Returns all available SCMs . Each SCM is tried in order
110
110
until a matching one is found.
111
111
"""
112
112
def available do
@@ -123,7 +123,7 @@ defmodule Mix.SCM do
123
123
end
124
124
125
125
@ doc """
126
- Aopend the given SCM module to the list of available SCMs.
126
+ Append the given SCM module to the list of available SCMs.
127
127
"""
128
128
def append ( mod ) when is_atom ( mod ) do
129
129
available = Enum . reject ( available ( ) , & ( & 1 == mod ) )
You can’t perform that action at this time.
0 commit comments