Skip to content

Commit 5b3b3cb

Browse files
committed
format
1 parent ee75709 commit 5b3b3cb

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

lib/iex/lib/iex/autocomplete.ex

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -611,10 +611,11 @@ defmodule IEx.Autocomplete do
611611
defp match_modules(hint, elixir_root?) do
612612
modules =
613613
if elixir_root? do
614-
acc = for mod <- :erlang.loaded(),
615-
str = Atom.to_string(mod),
616-
String.starts_with?(str, hint),
617-
do: str
614+
acc =
615+
for mod <- :erlang.loaded(),
616+
str = Atom.to_string(mod),
617+
String.starts_with?(str, hint),
618+
do: str
618619

619620
if String.starts_with?("Elixir.Elixir", hint), do: ["Elixir.Elixir" | acc], else: acc
620621
else

0 commit comments

Comments
 (0)