Skip to content

Commit a7eab9b

Browse files
committed
Don't reverse v's output
1 parent 1211ed7 commit a7eab9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/iex/lib/iex/helpers.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ defmodule IEx.Helpers do
8181
their results.
8282
"""
8383
def v do
84-
history = Enum.reverse(:queue.to_list(Process.get(:iex_history)))
84+
history = :queue.to_list(Process.get(:iex_history))
8585
Enum.each(history, print_history(&1))
8686
end
8787

0 commit comments

Comments
 (0)