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 e616166 commit d436bc5Copy full SHA for d436bc5
lib/elixir/lib/module/parallel_checker.ex
@@ -28,12 +28,12 @@ defmodule Module.ParallelChecker do
28
def get do
29
case :erlang.get(:elixir_checker_info) do
30
{parent, nil} ->
31
- {:ok, checker_table} = start_link()
32
- put(parent, checker_table)
33
- {parent, checker_table}
+ {:ok, cache} = start_link()
+ put(parent, cache)
+ {parent, cache}
34
35
- {parent, checker_table} ->
36
+ {parent, cache} ->
37
end
38
39
@@ -189,8 +189,8 @@ defmodule Module.ParallelChecker do
189
Test cache.
190
"""
191
def test_cache do
192
193
- checker_table
+ cache
194
195
196
@doc """
0 commit comments