Skip to content

Commit d39a52a

Browse files
committed
Fix minor compile-time warnings
1 parent 3e66197 commit d39a52a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/elixir/lib/kernel/cli.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ defmodule Kernel.CLI do
102102

103103
# Process shared options
104104

105-
defp process_shared([opt|t], config) when opt in ["-v", "--version"] do
105+
defp process_shared([opt|_t], _config) when opt in ["-v", "--version"] do
106106
IO.puts "Elixir #{System.version}"
107107
System.halt 0
108108
end

0 commit comments

Comments
 (0)