Skip to content

Commit 714b444

Browse files
committed
Update moduledoc for IEx.Remsh
1 parent 1c505ad commit 714b444

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lib/iex/lib/iex/remsh.ex

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
defmodule IEx.Remsh do
22
@moduledoc """
3-
Helper function injected into connecting remote nodes
4-
to properly handle autocompletion. Elixir supports:
3+
Provides one helper function that is injected into connecting
4+
remote nodes to properly handle autocompletion. Elixir supports:
55
6-
* remsh from an elixir node to an elixir node
7-
* remsh from a plain erlang node to an elixir node (through the ^G menu)
8-
* remsh from an elixir node to a plain erlang node (and get an erl shell there)
6+
* remsh from an elixir node to an elixir node
7+
* remsh from a plain erlang node to an elixir node (through the ^G menu)
8+
* remsh from an elixir node to a plain erlang node (and get an erl shell there)
99
1010
In order to get an Elixir shell from the ^G menu,
1111
you need to use 'Elixir-IEx' as the shell name.
@@ -17,7 +17,7 @@ defmodule IEx.Remsh do
1717
fn e ->
1818
case :rpc.call node, Elixir.IEx.Autocomplete, :expand, [e] do
1919
{:badrpc, _} -> {:no, '', []}
20-
r -> r
20+
r -> r
2121
end
2222
end
2323
end

0 commit comments

Comments
 (0)