Skip to content

Commit 08de436

Browse files
committed
"mix deps.clean": Reword docs to make it consitent with "mix clean"
Use "delete" instead of "remove" just to make it consitent with "mix clean" $ mix help mix clean # Deletes generated application files
1 parent 3517ba1 commit 08de436

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lib/mix/lib/mix/tasks/deps.clean.ex

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
defmodule Mix.Tasks.Deps.Clean do
22
use Mix.Task
33

4-
@shortdoc "Removes the given dependencies' files"
4+
@shortdoc "Deletes the given dependencies' files"
55

66
@moduledoc """
7-
Removes the given dependencies' files, including build artifacts and fetched
7+
Deletes the given dependencies' files, including build artifacts and fetched
88
sources.
99
1010
Since this is a destructive action, cleaning of dependencies
1111
can only happen by passing arguments/options:
1212
13-
* `dep1, dep2` - the name of dependencies to be removed
14-
* `--all` - removes all dependencies
15-
* `--unused` - removes only unused dependencies (no longer mentioned
13+
* `dep1, dep2` - the name of dependencies to be deleted
14+
* `--all` - deletes all dependencies
15+
* `--unused` - deletes only unused dependencies (no longer mentioned
1616
in the `mix.exs` file)
17-
* `--unlock` - also unlock the removed dependencies
17+
* `--unlock` - also unlocks the deleted dependencies
1818
1919
By default this task works across all environments, unless `--only`
2020
is given.

0 commit comments

Comments
 (0)