Skip to content

Commit 0253f61

Browse files
Fix parallel option type in Mix.Compilers.Erlang.compile/6 spec (#14615)
compile.yecc and compile.leex tasks call it with parallel: true
1 parent b26ae51 commit 0253f61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/mix/lib/mix/compilers/erlang.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ defmodule Mix.Compilers.Erlang do
1313
@type compile_opts :: [
1414
all_warnings: boolean(),
1515
force: boolean(),
16-
parallel: MapSet.t(Path.t()),
16+
parallel: boolean() | MapSet.t(Path.t()),
1717
preload: (-> term()),
1818
verbose: boolean()
1919
]

0 commit comments

Comments
 (0)