Skip to content

Commit 02edfed

Browse files
committed
Remove trailing whitespace in iex/helpers.ex
1 parent 75fcdac commit 02edfed

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lib/iex/lib/iex/helpers.ex

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ defmodule IEx.Helpers do
262262
end
263263

264264
@doc """
265-
Prints all types for the given module or prints out a specified type's
265+
Prints all types for the given module or prints out a specified type's
266266
specification
267267
268268
## Examples
@@ -292,7 +292,7 @@ defmodule IEx.Helpers do
292292

293293
@doc false
294294
def t(module, type) when is_atom(type) do
295-
types = lc {_, {t, _, _args}} = typespec inlist Kernel.Typespec.beam_types(module),
295+
types = lc {_, {t, _, _args}} = typespec inlist Kernel.Typespec.beam_types(module),
296296
t == type do
297297
print_type(typespec)
298298
typespec
@@ -317,7 +317,7 @@ defmodule IEx.Helpers do
317317

318318
@doc false
319319
def t(module, type, arity) do
320-
types = lc {_, {t, _, args}} = typespec inlist Kernel.Typespec.beam_types(module),
320+
types = lc {_, {t, _, args}} = typespec inlist Kernel.Typespec.beam_types(module),
321321
length(args) == arity and t == type, do: typespec
322322

323323
case types do
@@ -363,7 +363,7 @@ defmodule IEx.Helpers do
363363
defmacro s({ :/, _, [{ fun, _, args }, arity] }) when args == [] or is_atom(args) do
364364
quote do
365365
s(Kernel, unquote(fun), unquote(arity))
366-
end
366+
end
367367
end
368368

369369
defmacro s(module) do
@@ -488,7 +488,7 @@ defmodule IEx.Helpers do
488488
flush
489489
after
490490
0 -> :ok
491-
end
491+
end
492492
end
493493

494494
defp iex_reloaded do

0 commit comments

Comments
 (0)