We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6a017d commit eef251eCopy full SHA for eef251e
lib/mix/lib/mix/scm.ex
@@ -96,13 +96,13 @@ defmodule Mix.SCM do
96
97
The lock is sent via `opts[:lock]` but it may not always be
98
available. In such cases, if the SCM requires a lock, it must
99
- return `:lockmismatch`, otherwise simply `:ok`.
+ return `:mismatch`, otherwise simply `:ok`.
100
101
Note the lock may also belong to another SCM and as such, an
102
structural check is required. A structural mismatch should always
103
return `:outdated`.
104
"""
105
- @callback lock_status(opts) :: :mismatch | :outdated | :nolock | :ok
+ @callback lock_status(opts) :: :mismatch | :outdated | :ok
106
107
@doc """
108
Receives two options and must return `true` if they refer to the
0 commit comments