Skip to content

Commit ec1e7c0

Browse files
MojtabaHsjakepetroules
authored andcommitted
fix: typo in the word dependency
1 parent 2d29921 commit ec1e7c0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

products/llbuildSwift/BuildSystemBindings.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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.
409409
public 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:

0 commit comments

Comments
 (0)