Skip to content

Commit 859f471

Browse files
committed
Fix Typo
1 parent aaf9b5e commit 859f471

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "Mix Depdendency Submission"
1+
name: "Mix Dependency Submission"
22
description: "Calculates dependencies for Mix and submits the list to the GitHub Dependency Submission API"
33
author: "Erlang Ecosystem Foundation"
44
branding:

lib/mix/tasks/mix_dependency_submission.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ if Mix.env() == :dev do
22
# Helpful for testing, use Burrito binary for prod
33

44
defmodule Mix.Tasks.MixDependencySubmission do
5-
@shortdoc "Run mix_depdendency_submission"
5+
@shortdoc "Run mix_dependency_submission"
66
@moduledoc """
77
#{@shortdoc}
88

lib/mix_dependency_submission/util.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ defmodule MixDependencySubmission.Util do
3737
env when env in [:dev, :test] ->
3838
defp on_clean_slate(fun) do
3939
# This is an internal API that we need to call if the exection is run
40-
# using mix (eg `mix test` / `mix mix_depdendency_submission`).
40+
# using mix (eg `mix test` / `mix mix_dependency_submission`).
4141
# Since it is not part of the production build, this is acceptable.
4242
Mix.ProjectStack.on_clean_slate(fun)
4343
end

0 commit comments

Comments
 (0)