File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -250,7 +250,7 @@ public protocol ExternalCommand: AnyObject {
250250 var dependencyPaths : [ String ] { get }
251251
252252 /// Format of the dependency files listed in `dependencyPaths`.
253- var depedencyDataFormat : DependencyDataFormat { get }
253+ var dependencyDataFormat : DependencyDataFormat { get }
254254
255255 /// Optional. The command's working directory. Used to resolve relative paths in dependency files.
256256 var workingDirectory : String ? { get }
@@ -407,7 +407,7 @@ public extension ExternalCommand {
407407
408408// Default implementations for these hooks since they're optional to the client.
409409public extension ExternalCommand {
410- var depedencyDataFormat : DependencyDataFormat { . unused }
410+ var dependencyDataFormat : DependencyDataFormat { . unused }
411411 var dependencyPaths : [ String ] { [ ] }
412412 var workingDirectory : String ? { nil }
413413 func start( _ command: Command , _ commandInterface: BuildSystemCommandInterface ) { }
@@ -442,7 +442,7 @@ private final class CommandWrapper {
442442 if !command. dependencyPaths. isEmpty {
443443 var formatKey = copiedDataFromBytes ( Array ( " deps-style " . utf8) )
444444 var value : llb_data_t
445- switch command. depedencyDataFormat {
445+ switch command. dependencyDataFormat {
446446 case . makefile:
447447 value = copiedDataFromBytes ( Array ( " makefile " . utf8) )
448448 case . dependencyinfo:
You can’t perform that action at this time.
0 commit comments