Skip to content
Merged
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
4 changes: 2 additions & 2 deletions lib/elixir_sense/providers/plugins/module_store.ex
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
defmodule ElixirSense.Providers.Plugins.ModuleStore do
@moduledoc """
Caches the module list and a list of modules keyed by the behaviour they implement.
Caches the module list and a set of modules keyed by the behaviour they implement.
"""
defstruct by_behaviour: %{}, list: [], plugins: []

@type t :: %__MODULE__{
by_behaviour: %{optional(atom) => module},
by_behaviour: %{optional(atom) => MapSet.t(module)},
list: list(module),
plugins: list(module)
}
Expand Down
Loading