Skip to content

Commit

Permalink
Fix indentation in Product.swift (#7427)
Browse files Browse the repository at this point in the history
### Modifications:
Fix indentation in `Product.swift`

### Result:
- [x] I executed SwiftFormat and checked that the indentation remained
corrected.
  • Loading branch information
coffmark committed Mar 27, 2024
1 parent 601d040 commit 451fbb2
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Sources/PackageDescription/Product.swift
Expand Up @@ -69,7 +69,6 @@ public class Product {

/// The executable product of a Swift package.
public final class Executable: Product {

/// The names of the targets in this product.
public let targets: [String]

Expand Down Expand Up @@ -149,7 +148,7 @@ public class Product {
/// - name: The name of the executable product.
/// - targets: The targets to bundle into an executable product.
/// - Returns: A `Product` instance.
public static func executable(
public static func executable(
name: String,
targets: [String]
) -> Product {
Expand All @@ -167,7 +166,7 @@ public static func executable(
/// - name: The name of the plugin product.
/// - targets: The plugin targets to vend as a product.
/// - Returns: A `Product` instance.
@available(_PackageDescription, introduced: 5.5)
@available(_PackageDescription, introduced: 5.5)
public static func plugin(
name: String,
targets: [String]
Expand Down

0 comments on commit 451fbb2

Please sign in to comment.