Skip to content

Commit d26e4b3

Browse files
committed
Minor comment cleanup
1 parent d636dc0 commit d26e4b3

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

lib/iex/lib/iex/helpers.ex

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,6 @@ defmodule IEx.Helpers do
264264
"""
265265
def l(module) do
266266
:code.purge(module)
267-
# FIXME: shouldn't we use Code.load_file here?
268267
:code.load_file(module)
269268
end
270269

lib/iex/test/iex/helpers_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ defmodule IEx.HelpersTest do
239239
assert Sample.run == :run
240240

241241
File.write! filename, "defmodule Sample do end"
242-
# FIXME: is there another way to compile a file without loading its module?
242+
# FIXME: this could probably be improved
243243
System.cmd "../../bin/elixirc sample.ex"
244244

245245
assert l(Sample) == {:module, Sample}

0 commit comments

Comments
 (0)