Example:
defmodule Foo.Bar do
end
defmodule Baz.Foo do
end
defmodule Test do
alias Foo.Bar
alias Baz.Foo
end
Organize aliases in module Test will swap the order of the aliases causing the alias Foo.Bar to alias the module Baz.Foo.Bar instead of Foo.Bar