We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d169ac1 commit 73d42ffCopy full SHA for 73d42ff
1 file changed
Plugins/explicitDependencyImportCheckPlugin/ExplicitDependencyImportCheckPlugin.swift
@@ -61,7 +61,7 @@ extension ExplicitDependencyImportCheckPlugin {
61
guard !unusedDependencies.isEmpty else { return [] }
62
63
var warningText = "warning: \(unusedDependencies.count) Extraneous dependencies found for \(target.name) ⚠️⚠️\n"
64
- warningText += unusedDependencies.map { "👉 \($0) is an extraneous depdnency" }
+ warningText += unusedDependencies.map { "👉 \($0) is an extraneous dependency" }
65
.joined(separator: "\n")
66
67
let echoTool = try context.tool(named: "echo")
0 commit comments