Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CoreCommands: fix comment typo #6489

Merged
merged 1 commit into from Apr 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -297,7 +297,7 @@ public struct BuildDescription: Codable {
/// The map of copy commands.
let copyCommands: [BuildManifest.CmdName: LLBuildManifest.CopyTool]

/// A flag that inidcates this build should perform a check for whether targets only import
/// A flag that indicates this build should perform a check for whether targets only import
/// their explicitly-declared dependencies
let explicitTargetDependencyImportCheckingMode: BuildParameters.TargetDependencyImportCheckingMode

Expand Down
2 changes: 1 addition & 1 deletion Sources/CoreCommands/Options.swift
Expand Up @@ -434,7 +434,7 @@ public struct BuildOptions: ParsableArguments {
@Flag()
public var useIntegratedSwiftDriver: Bool = false

/// A flag that inidcates this build should check whether targets only import
/// A flag that indicates this build should check whether targets only import
/// their explicitly-declared dependencies
@Option()
public var explicitTargetDependencyImportCheck: TargetDependencyImportCheckingMode = .none
Expand Down
2 changes: 1 addition & 1 deletion Sources/SPMBuildCore/BuildParameters.swift
Expand Up @@ -174,7 +174,7 @@ public struct BuildParameters: Encodable {
/// Whether to use the explicit module build flow (with the integrated driver).
public var useExplicitModuleBuild: Bool

/// A flag that inidcates this build should check whether targets only import.
/// A flag that indicates this build should check whether targets only import.
/// their explicitly-declared dependencies
public var explicitTargetDependencyImportCheckingMode: TargetDependencyImportCheckingMode

Expand Down