Skip to content

Commit e2d4ebd

Browse files
committed
Update Package.swift to use 'IEEE 754' target name
Updated target names from "IEEE_754" to "IEEE 754" to match the directory rename from Sources/IEEE_754 to Sources/IEEE 754. This ensures the package manifest is consistent with the actual directory structure.
1 parent 361dccb commit e2d4ebd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Package.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ let package = Package(
2626
products: [
2727
.library(
2828
name: "IEEE 754",
29-
targets: ["IEEE_754"]
29+
targets: ["IEEE 754"]
3030
)
3131
],
3232
dependencies: [
@@ -38,16 +38,16 @@ let package = Package(
3838
dependencies: []
3939
),
4040
.target(
41-
name: "IEEE_754",
41+
name: "IEEE 754",
4242
dependencies: [
4343
.product(name: "Standards", package: "swift-standards"),
4444
.target(name: "CIEEE754", condition: .when(platforms: [.macOS, .linux, .iOS, .tvOS, .watchOS]))
4545
]
4646
),
4747
.testTarget(
48-
name: "IEEE_754".tests,
48+
name: "IEEE 754".tests,
4949
dependencies: [
50-
"IEEE_754",
50+
"IEEE 754",
5151
.product(name: "StandardsTestSupport", package: "swift-standards")
5252
]
5353
)

0 commit comments

Comments
 (0)