Skip to content

Commit f52f395

Browse files
Fix typos (#14951)
1 parent e55388d commit f52f395

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/mix/lib/mix/tasks/cmd.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ defmodule Mix.Tasks.Cmd do
2626
Your shell will expand "lib/*" and then pass multiple arguments to
2727
`mix cmd`, which in turn passes them to `echo`. Note that, `mix cmd`
2828
by itself, does not perform any shell expansion. This means that,
29-
if you invoke `mix cmd` programatically, as in:
29+
if you invoke `mix cmd` programmatically, as in:
3030
3131
Mix.Task.run("cmd", ["echo", "lib/*"])
3232

lib/mix/lib/mix/tasks/xref.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ defmodule Mix.Tasks.Xref do
4747
`lib/b.ex`, and `lib/c.ex` depend on will cause `lib/a.ex` to recompile.
4848
In other words, whenever you have a cycle, **a change to any file in the
4949
cycle will cause all compile-time deps to recompile**. Therefore, your
50-
first priority to reduce constant recompilations is to remve them.
50+
first priority to reduce constant recompilations is to remove them.
5151
You can spot them by running:
5252
5353
$ mix xref graph --format cycles --label compile-connected

0 commit comments

Comments
 (0)