Skip to content

Commit b8d254a

Browse files
committed
Title case Hex
1 parent 3517ba1 commit b8d254a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

lib/mix/lib/mix/hex.ex

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ defmodule Mix.Hex do
1111
true
1212
else
1313
shell = Mix.shell
14-
shell.info "Could not find hex, which is needed to build dependency #{inspect app}"
14+
shell.info "Could not find Hex, which is needed to build dependency #{inspect app}"
1515

16-
if shell.yes?("Shall I install hex?") do
16+
if shell.yes?("Shall I install Hex?") do
1717
Mix.Tasks.Local.Hex.run ["--force"]
1818
else
1919
false
@@ -31,9 +31,9 @@ defmodule Mix.Hex do
3131
not Code.ensure_loaded?(Hex) ->
3232
false
3333
not Version.match?(Hex.version, @hex_requirement) ->
34-
Mix.shell.info "Mix requires hex #{@hex_requirement} but you have #{Hex.version}"
34+
Mix.shell.info "Mix requires Hex #{@hex_requirement} but you have #{Hex.version}"
3535

36-
if Mix.shell.yes?("Shall I abort the current command and update hex?") do
36+
if Mix.shell.yes?("Shall I abort the current command and update Hex?") do
3737
Mix.Tasks.Local.Hex.run ["--force"]
3838
exit({:shutdown, 0})
3939
end

lib/mix/lib/mix/tasks/local.hex.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ defmodule Mix.Tasks.Local.Hex do
55
@hex_list_url @hex_s3 <> "/installs/hex-1.x.csv"
66
@hex_archive_url @hex_s3 <> "/installs/[VERSION]/hex.ez"
77

8-
@shortdoc "Installs hex locally"
8+
@shortdoc "Installs Hex locally"
99

1010
@moduledoc """
1111
Installs Hex locally.

0 commit comments

Comments
 (0)