We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5eec18e commit 6a48ad8Copy full SHA for 6a48ad8
PackageA/Package.swift
@@ -23,7 +23,9 @@ let package = Package(
23
// Targets can depend on other targets in this package and products from dependencies.
24
.target(
25
name: "PackageA",
26
- dependencies: ["InternalUtils"]
+ dependencies: [
27
+ "InternalUtils"
28
+ ]
29
),
30
]
31
)
SPDevel/SPDevel/ViewController.swift
@@ -17,7 +17,7 @@ class ViewController: UIViewController {
17
override func viewDidLoad() {
18
super.viewDidLoad()
19
20
- label.text = "\(Framework.code)\n\(ExternalLibrary.code)"
+ label.text = "\(Framework.code)\n\n\(ExternalLibrary.code)"
21
}
22
0 commit comments