@@ -262,7 +262,7 @@ defmodule IEx.Helpers do
262
262
end
263
263
264
264
@ 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
266
266
specification
267
267
268
268
## Examples
@@ -292,7 +292,7 @@ defmodule IEx.Helpers do
292
292
293
293
@ doc false
294
294
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 ) ,
296
296
t == type do
297
297
print_type ( typespec )
298
298
typespec
@@ -317,7 +317,7 @@ defmodule IEx.Helpers do
317
317
318
318
@ doc false
319
319
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 ) ,
321
321
length ( args ) == arity and t == type , do: typespec
322
322
323
323
case types do
@@ -363,7 +363,7 @@ defmodule IEx.Helpers do
363
363
defmacro s ( { :/ , _ , [ { fun , _ , args } , arity ] } ) when args == [ ] or is_atom ( args ) do
364
364
quote do
365
365
s ( Kernel , unquote ( fun ) , unquote ( arity ) )
366
- end
366
+ end
367
367
end
368
368
369
369
defmacro s ( module ) do
@@ -488,7 +488,7 @@ defmodule IEx.Helpers do
488
488
flush
489
489
after
490
490
0 -> :ok
491
- end
491
+ end
492
492
end
493
493
494
494
defp iex_reloaded do
0 commit comments